mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 04:36:19 +08:00
882cec62d6
* docs: Add components overview page * fix detail * remove ContributorsList form overview page * fix components url * improve code style * remove extra file * fix detail * fix lint * fix lint * docs: Finish components overview page * fix lint * docs: Update cover * fix lint * update cover * update menu * improve overview page * refactor code * fix order * update title * add components count * fix overview page ssr bug * move less file * update title margin Co-authored-by: arvinxx <arvinx@foxmail.com>
105 lines
4.6 KiB
Markdown
105 lines
4.6 KiB
Markdown
---
|
|
category: Components
|
|
cols: 1
|
|
type: Navigation
|
|
title: Menu
|
|
cover: https://gw.alipayobjects.com/zos/alicdn/3XZcjGpvK/Menu.svg
|
|
---
|
|
|
|
A versatile menu for navigation.
|
|
|
|
## When To Use
|
|
|
|
Navigation is an important part of any website, as a good navigation setup allows users to move around the site quickly and efficiently. Ant Design offers top and side navigation options. Top navigation provides all the categories and functions of the website. Side navigation provides the multi-level structure of the website.
|
|
|
|
More layouts with navigation: [Layout](/components/layout).
|
|
|
|
## API
|
|
|
|
```jsx
|
|
<Menu>
|
|
<Menu.Item>Menu</Menu.Item>
|
|
<SubMenu title="SubMenu">
|
|
<Menu.Item>SubMenuItem</Menu.Item>
|
|
</SubMenu>
|
|
</Menu>
|
|
```
|
|
|
|
### Menu
|
|
|
|
| Param | Description | Type | Default value | Version |
|
|
| --- | --- | --- | --- | --- |
|
|
| defaultOpenKeys | Array with the keys of default opened sub menus | string\[] | | |
|
|
| defaultSelectedKeys | Array with the keys of default selected menu items | string\[] | | |
|
|
| forceSubMenuRender | Render submenu into DOM before it becomes visible | boolean | false | |
|
|
| inlineCollapsed | Specifies the collapsed status when menu is inline mode | boolean | - | |
|
|
| inlineIndent | Indent (in pixels) of inline menu items on each level | number | 24 | |
|
|
| mode | Type of menu; `vertical`, `horizontal`, or `inline` | `vertical` \| `horizontal` \| `inline` | `vertical` | |
|
|
| multiple | Allows selection of multiple items | boolean | false | |
|
|
| openKeys | Array with the keys of currently opened sub-menus | string\[] | | |
|
|
| selectable | Allows selecting menu items | boolean | true | |
|
|
| selectedKeys | Array with the keys of currently selected menu items | string\[] | | |
|
|
| style | Style of the root node | CSSProperties | | |
|
|
| subMenuCloseDelay | Delay time to hide submenu when mouse leaves (in seconds) | number | 0.1 | |
|
|
| subMenuOpenDelay | Delay time to show submenu when mouse enters, (in seconds) | number | 0 | |
|
|
| theme | Color theme of the menu | `light` \| `dark` | `light` | |
|
|
| onClick | Called when a menu item is clicked | function({ item, key, keyPath, domEvent }) | - | |
|
|
| onDeselect | Called when a menu item is deselected (multiple mode only) | function({ item, key, keyPath, selectedKeys, domEvent }) | - | |
|
|
| onOpenChange | Called when sub-menus are opened or closed | function(openKeys: string\[]) | noop | |
|
|
| onSelect | Called when a menu item is selected | function({ item, key, keyPath, selectedKeys, domEvent }) | none | |
|
|
| overflowedIndicator | Customized icon when menu is collapsed | ReactNode | - | |
|
|
|
|
> More options in [rc-menu](https://github.com/react-component/menu#api)
|
|
|
|
### Menu.Item
|
|
|
|
| Param | Description | Type | Default value | Version |
|
|
| -------- | ------------------------------------ | --------- | ------------- | ------- |
|
|
| disabled | Whether menu item is disabled | boolean | false | |
|
|
| key | Unique ID of the menu item | string | | |
|
|
| title | Set display title for collapsed item | string | | |
|
|
| icon | icon of the menu item | ReactNode | | 4.2.0 |
|
|
| danger | Display the danger style | boolean | false | 4.3.0 |
|
|
|
|
> Note: `icon` is a newly added prop in`4.2.0`. For previous versions, please use the following method to define the icon.
|
|
>
|
|
> ```jsx
|
|
> <Menu.Item>
|
|
> <PieChartOutlined />
|
|
> <span>Option 1</span>
|
|
> </Menu.Item>
|
|
> <Menu.SubMenu
|
|
> title={
|
|
> <>
|
|
> <PieChartOutlined />
|
|
> <span>Option 2</span>
|
|
> </>
|
|
> }
|
|
> >
|
|
> ...
|
|
> </Menu.SubMenu>
|
|
> ```
|
|
|
|
### Menu.SubMenu
|
|
|
|
| Param | Description | Type | Default value | Version |
|
|
| --- | --- | --- | --- | --- |
|
|
| popupClassName | Sub-menu class name | string | | |
|
|
| children | Sub-menus or sub-menu items | Array<MenuItem\|SubMenu> | | |
|
|
| disabled | Whether sub-menu is disabled | boolean | false | |
|
|
| key | Unique ID of the sub-menu | string | | |
|
|
| title | Title of sub menu | string\|ReactNode | | |
|
|
| icon | Icon of sub menu | ReactNode | | 4.2.0 |
|
|
| onTitleClick | Callback executed when the sub-menu title is clicked | function({ key, domEvent }) | | |
|
|
|
|
### Menu.ItemGroup
|
|
|
|
| Param | Description | Type | Default value | Version |
|
|
| -------- | ------------------ | ----------------- | ------------- | ------- |
|
|
| children | sub-menu items | MenuItem\[] | | |
|
|
| title | title of the group | string\|ReactNode | | |
|
|
|
|
### Menu.Divider
|
|
|
|
Divider line in between menu items, only used in vertical popup Menu or Dropdown Menu.
|