2016-03-31 09:40:55 +08:00
|
|
|
---
|
2017-02-09 15:09:32 +08:00
|
|
|
order: 6
|
2016-07-04 10:48:21 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 多级菜单
|
|
|
|
en-US: Cascading menu
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-12-31 17:34:04 +08:00
|
|
|
|
2016-07-04 10:48:21 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-12-31 17:34:04 +08:00
|
|
|
传入的菜单里有多个层级。
|
|
|
|
|
2016-07-04 10:48:21 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
The menu has multiple levels.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2019-08-13 14:07:17 +08:00
|
|
|
import { Menu, Dropdown } from 'antd';
|
2019-11-28 12:34:33 +08:00
|
|
|
import { DownOutlined } from '@ant-design/icons';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2019-05-06 12:04:39 +08:00
|
|
|
const { SubMenu } = Menu;
|
2015-12-31 17:34:04 +08:00
|
|
|
|
2016-01-07 16:29:12 +08:00
|
|
|
const menu = (
|
2022-03-18 15:20:35 +08:00
|
|
|
<Menu
|
|
|
|
items={[
|
|
|
|
{
|
|
|
|
type: 'group',
|
|
|
|
label: 'Group title',
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
label: '1st menu item',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '2nd menu item',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'sub menu',
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
label: '3rd menu item',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '4th menu item',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'disabled sub menu',
|
|
|
|
disabled: true,
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
label: '5d menu item',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '6th menu item',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
2016-01-07 16:29:12 +08:00
|
|
|
);
|
2015-12-31 17:34:04 +08:00
|
|
|
|
2022-04-03 23:27:45 +08:00
|
|
|
export default () => (
|
2015-12-31 17:34:04 +08:00
|
|
|
<Dropdown overlay={menu}>
|
2020-02-10 13:07:07 +08:00
|
|
|
<a className="ant-dropdown-link" onClick={e => e.preventDefault()}>
|
2019-11-28 12:34:33 +08:00
|
|
|
Cascading menu <DownOutlined />
|
2015-12-31 17:34:04 +08:00
|
|
|
</a>
|
2022-04-03 23:27:45 +08:00
|
|
|
</Dropdown>
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|