No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.

组件演示

引入方式

import { Menu } from 'tx-design';

Story Source

<div
  style={{
    padding: '20px 40px'
  }}
>
  <h3>
    组件演示
  </h3>
  <Menu
    defaultIndex="0"
    defaultOpenSubMenus={[]}
    mode="horizontal"
  >
    <MenuItem>
      前端
    </MenuItem>
    <MenuItem>
      后端
    </MenuItem>
  </Menu>
</div>

Prop Types

"Menu" Component

propertypropTyperequireddefaultdescription
defaultIndexstring-0默认 active 的菜单项的索引值
classNamestring--
modeoneOf "horizontal" | "vertical"-horizontal菜单展示的样式
styleany--
defaultOpenSubMenusstring[]-[]竖着时侧边栏默认展开
onSelectSelectCallback--点击菜单项触发的回调函数

"MenuItem" Component

propertypropTyperequireddefaultdescription
indexstring--当前是否被选中的index标识
disabledboolean--是否禁止点击
classNamestring--
styleCSSProperties--