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.

48 lines
842 B

---
order: 0
title:
zh-CN: 基本
en-US: Basic
---
10 years ago
## zh-CN
最简单的下拉菜单。
10 years ago
## en-US
The most basic dropdown menu.
```jsx
import { Menu, Dropdown, Icon } from 'antd';
10 years ago
const menu = (
<Menu>
<Menu.Item>
<a target="_blank" rel="noopener noreferrer" href="http://www.alipay.com/">
1st menu item
</a>
</Menu.Item>
<Menu.Item>
<a target="_blank" rel="noopener noreferrer" href="http://www.taobao.com/">
2nd menu item
</a>
</Menu.Item>
<Menu.Item>
<a target="_blank" rel="noopener noreferrer" href="http://www.tmall.com/">
3rd menu item
</a>
</Menu.Item>
</Menu>
);
10 years ago
9 years ago
ReactDOM.render(
10 years ago
<Dropdown overlay={menu}>
<a className="ant-dropdown-link" href="#">
Hover me <Icon type="down" />
</a>
</Dropdown>,
mountNode,
);
```