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.

38 lines
719 B

10 years ago
# 基本
- order: 0
最简单的下拉菜单。
10 years ago
---
````jsx
import { Menu, Dropdown, Button, Icon } from 'antd';
10 years ago
const menu = <Menu>
<Menu.Item>
<a target="_blank" href="http://www.alipay.com/">第一个菜单项</a>
</Menu.Item>
<Menu.Item>
<a target="_blank" href="http://www.taobao.com/">第二个菜单项</a>
</Menu.Item>
<Menu.Item>
<a target="_blank" href="http://www.tmall.com/">第三个菜单项</a>
</Menu.Item>
10 years ago
</Menu>;
9 years ago
ReactDOM.render(
10 years ago
<Dropdown overlay={menu}>
<Button>
某按钮 <Icon type="down" />
</Button>
10 years ago
</Dropdown>
, document.getElementById('components-dropdown-demo-basic'));
````
10 years ago
<style>
.code-box-demo .ant-btn {
margin-right: 6px;
}
</style>