mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-19 03:54:28 +08:00
a67d39cd6c
* docs: Update Menu cn doc * chore: update ts def * chore: support convert * docs: more demo * docs: more demo * docs: all menu demos * docs: dropdown demo * docs: dropdown all demos * docs: update demo * test: coverage * docs: more demo * docs: layout demo * docs: all demo * chore: fix ts lint * docs: fix doc * docs: all docs
64 lines
1.1 KiB
Markdown
64 lines
1.1 KiB
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本
|
|
en-US: Basic
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
最简单的下拉菜单。
|
|
|
|
## en-US
|
|
|
|
The most basic dropdown menu.
|
|
|
|
```jsx
|
|
import { Menu, Dropdown } from 'antd';
|
|
import { DownOutlined } from '@ant-design/icons';
|
|
|
|
const menu = (
|
|
<Menu
|
|
items={[
|
|
{
|
|
label: (
|
|
<a target="_blank" rel="noopener noreferrer" href="https://www.antgroup.com">
|
|
1st menu item
|
|
</a>
|
|
),
|
|
},
|
|
{
|
|
label: (
|
|
<a target="_blank" rel="noopener noreferrer" href="https://www.aliyun.com">
|
|
2nd menu item (disabled)
|
|
</a>
|
|
),
|
|
icon: <DownOutlined />,
|
|
disabled: true,
|
|
},
|
|
{
|
|
label: (
|
|
<a target="_blank" rel="noopener noreferrer" href="https://www.luohanacademy.com">
|
|
3rd menu item (disabled)
|
|
</a>
|
|
),
|
|
disabled: true,
|
|
},
|
|
{
|
|
danger: true,
|
|
label: 'a danger item',
|
|
},
|
|
]}
|
|
/>
|
|
);
|
|
|
|
ReactDOM.render(
|
|
<Dropdown overlay={menu}>
|
|
<a className="ant-dropdown-link" onClick={e => e.preventDefault()}>
|
|
Hover me <DownOutlined />
|
|
</a>
|
|
</Dropdown>,
|
|
mountNode,
|
|
);
|
|
```
|