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.
32 lines
763 B
32 lines
763 B
<cn>
|
|
#### 多级菜单
|
|
传入的菜单里有多个层级。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Cascading menu
|
|
The menu has multiple levels.
|
|
</us>
|
|
|
|
```html
|
|
<template>
|
|
<a-dropdown>
|
|
<a class="ant-dropdown-link" href="#">
|
|
Cascading menu <a-icon type="down" />
|
|
</a>
|
|
<a-menu slot="overlay">
|
|
<a-menu-item>1st menu item</a-menu-item>
|
|
<a-menu-item>2nd menu item</a-menu-item>
|
|
<a-sub-menu title="sub menu" key="test">
|
|
<a-menu-item>3rd menu item</a-menu-item>
|
|
<a-menu-item>4th menu item</a-menu-item>
|
|
</a-sub-menu>
|
|
<a-sub-menu title="disabled sub menu" disabled>
|
|
<a-menu-item>5d menu item</a-menu-item>
|
|
<a-menu-item>6th menu item</a-menu-item>
|
|
</a-sub-menu>
|
|
</a-menu>
|
|
</a-dropdown>
|
|
</template>
|
|
```
|