mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 01:29:11 +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
52 lines
1.1 KiB
Markdown
52 lines
1.1 KiB
Markdown
---
|
||
order: 5
|
||
title:
|
||
zh-CN: 多个按钮组合
|
||
en-US: Multiple Buttons
|
||
---
|
||
|
||
## zh-CN
|
||
|
||
按钮组合使用时,推荐使用 1 个主操作 + n 个次操作,3 个以上操作时把更多操作放到 [Dropdown.Button](/components/dropdown/#components-dropdown-demo-dropdown-button) 中组合使用。
|
||
|
||
## en-US
|
||
|
||
If you need several buttons, we recommend that you use 1 primary button + n secondary buttons, and if there are more than three operations, you can group some of them into [Dropdown.Button](/components/dropdown/#components-dropdown-demo-dropdown-button).
|
||
|
||
```tsx
|
||
import { Button, Menu, Dropdown, MenuProps } from 'antd';
|
||
|
||
const onMenuClick: MenuProps['onClick'] = e => {
|
||
console.log('click', e);
|
||
};
|
||
|
||
const menu = (
|
||
<Menu
|
||
onClick={onMenuClick}
|
||
items={[
|
||
{
|
||
key: '1',
|
||
label: '1st item',
|
||
},
|
||
{
|
||
key: '2',
|
||
label: '2nd item',
|
||
},
|
||
{
|
||
key: '3',
|
||
label: '3rd item',
|
||
},
|
||
]}
|
||
/>
|
||
);
|
||
|
||
ReactDOM.render(
|
||
<>
|
||
<Button type="primary">primary</Button>
|
||
<Button>secondary</Button>
|
||
<Dropdown.Button overlay={menu}>Actions</Dropdown.Button>
|
||
</>,
|
||
mountNode,
|
||
);
|
||
```
|