You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

2.7 KiB

category chinese cols type english
Components 导航菜单 1 Navigation Menu

为页面和功能提供导航的菜单列表。

何时使用

导航菜单是一个网站的灵魂,用户依赖导航在各个页面中进行跳转。一般分为顶部导航和侧边导航,顶部导航提供全局性的类目和功能,侧边导航提供多级结构来收纳和排列网站架构。

更多布局和导航的范例可以参考:常用布局

<Menu>
  <Menu.Item>菜单项</Menu.Item>
  <SubMenu title="子菜单">
    <Menu.Item>子菜单项</Menu.Item>
  </SubMenu>
</Menu>

API

Menu props

参数 说明 类型 默认值
theme 主题颜色 String: light dark light
mode 菜单类型,现在支持垂直、水平、和内嵌模式三种 String: vertical horizontal inline vertical
selectedKeys 当前选中的菜单项 key 数组 Array
defaultSelectedKeys 初始选中的菜单项 key 数组 Array
openKeys 当前展开的 SubMenu 菜单项 key 数组 Array
defaultOpenKeys 初始展开的 SubMenu 菜单项 key 数组
onOpen SubMenu 展开回调 Function({ key, item, keyPath })
onClose SubMenu 收起回调 Function({ key, item, keyPath })
onSelect 被选中时调 Function({ item, key, selectedKeys })
onDeselect 取消选中时调用,仅在 multiple 生效 Function({ item, key, selectedKeys }) -
onClick 点击 menuitem 调用此函数,参数为 {item, key, keyPath} function -
style 根节点样式 Object

More options in rc-menu

Menu.Item props

参数 说明 类型 默认值
disabled 是否禁用 Boolean false
key item 的唯一标志 String

Menu.SubMenu props

参数 说明 类型 默认值
disabled 是否禁用 Boolean false
key 唯一标志 String
title 子菜单项值 String or React.Element
children 子菜单的菜单项 (MenuItem or SubMenu)[]
onTitleClick 点击子菜单标题 Function({ eventKey, domEvent })

Menu.ItemGroup props

参数 说明 类型 默认值
title 分组标题 String or React.Element
children 分组的菜单项 MenuItem[]