ant-design/components/dropdown/demo/sub-menu.md
2022-04-11 17:41:54 +08:00

1.1 KiB

order title
6
zh-CN en-US
多级菜单 Cascading menu

zh-CN

传入的菜单里有多个层级。

en-US

The menu has multiple levels.

import { Menu, Dropdown } from 'antd';
import { DownOutlined } from '@ant-design/icons';

const { SubMenu } = Menu;

const menu = (
  <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',
          },
        ],
      },
    ]}
  />
);

export default () => (
  <Dropdown overlay={menu}>
    <a className="ant-dropdown-link" onClick={e => e.preventDefault()}>
      Cascading menu <DownOutlined />
    </a>
  </Dropdown>
);