CommandBar有两组菜单项items
和farItems
,还具有overflowItems
,这些菜单项实际上是作为items
的子菜单创建的。 / p>
是否有内置方法可以使overflowItems
成为farItems
的子菜单?
这是我目前正在实现的方式-不错,但是我只是想知道是否还有其他方法...
<CommandBar
items={[ ..myMenuItems.. ]}
farItems={[
{
key: 'more commands',
ariaLabel: 'More',
className: 'ms-CommandBar-overflowButton',
menuIconProps:{
iconName: 'More',
className: 'customOverflowButton'
},
subMenuProps: {
items: [ ..myOverflowItems.. ]
}
}]
}
/>
答案 0 :(得分:-1)
您也许可以按照弹性顺序简单地翻转它们。