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
659 B

10 years ago
# 基本
- order: 0
最简单的下拉菜单。
10 years ago
---
````jsx
var Menu = antd.Menu;
var Dropdown = antd.Dropdown;
var menu = <Menu>
<Menu.Item key="0">
<a href="http://www.alipay.com/">第一个菜单项</a>
</Menu.Item>
<Menu.Item key="1">
<a href="http://www.taobao.com/">第二个菜单项</a>
</Menu.Item>
10 years ago
<Menu.Divider/>
<Menu.Item key="3">第三个菜单项</Menu.Item>
10 years ago
</Menu>;
React.render(
10 years ago
<Dropdown overlay={menu}>
<button className="ant-btn ant-btn-ghost">
点我下来 <i className="anticon anticon-caret-down"></i>
</button>
10 years ago
</Dropdown>
, document.getElementById('components-dropdown-demo-basic'));
````