mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +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
60 lines
1.0 KiB
Markdown
60 lines
1.0 KiB
Markdown
---
|
||
order: 2
|
||
title:
|
||
zh-CN: 其他元素
|
||
en-US: Other elements
|
||
---
|
||
|
||
## zh-CN
|
||
|
||
分割线和不可用菜单项。
|
||
|
||
## en-US
|
||
|
||
Divider and disabled menu item.
|
||
|
||
```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>
|
||
),
|
||
key: '0',
|
||
},
|
||
{
|
||
label: (
|
||
<a target="_blank" rel="noopener noreferrer" href="https://www.aliyun.com">
|
||
2nd menu item
|
||
</a>
|
||
),
|
||
key: '1',
|
||
},
|
||
{
|
||
type: 'divider',
|
||
},
|
||
{
|
||
label: '3rd menu item(disabled)',
|
||
key: '3',
|
||
disabled: true,
|
||
},
|
||
]}
|
||
/>
|
||
);
|
||
|
||
ReactDOM.render(
|
||
<Dropdown overlay={menu}>
|
||
<a className="ant-dropdown-link" onClick={e => e.preventDefault()}>
|
||
Hover me <DownOutlined />
|
||
</a>
|
||
</Dropdown>,
|
||
mountNode,
|
||
);
|
||
```
|