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.
31 lines
573 B
31 lines
573 B
<cn>
|
|
#### 基本
|
|
最简单的下拉菜单。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Basic
|
|
The most basic dropdown menu.
|
|
</us>
|
|
|
|
```html
|
|
<template>
|
|
<a-dropdown>
|
|
<a class="ant-dropdown-link" href="#">
|
|
Hover me <a-icon type="down" />
|
|
</a>
|
|
<a-menu slot="overlay">
|
|
<a-menu-item>
|
|
<a href="javascript:;">1st menu item</a>
|
|
</a-menu-item>
|
|
<a-menu-item>
|
|
<a href="javascript:;">2nd menu item</a>
|
|
</a-menu-item>
|
|
<a-menu-item>
|
|
<a href="javascript:;">3rd menu item</a>
|
|
</a-menu-item>
|
|
</a-menu>
|
|
</a-dropdown>
|
|
</template>
|
|
```
|