2016-10-31 19:31:43 +08:00
---
2017-01-23 22:24:36 +08:00
order: 5
2016-10-31 19:31:43 +08:00
title:
zh-CN: 多个按钮组合
en-US: Multiple Buttons
---
## zh-CN
2020-10-21 11:47:59 +08:00
按钮组合使用时,推荐使用 1 个主操作 + n 个次操作, 3 个以上操作时把更多操作放到 [Dropdown.Button ](/components/dropdown/#components-dropdown-demo-dropdown-button ) 中组合使用。
2016-10-31 19:31:43 +08:00
## en-US
2020-10-21 11:47:59 +08:00
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 ).
2016-10-31 19:31:43 +08:00
2022-03-18 15:20:35 +08:00
```tsx
import { Button, Menu, Dropdown, MenuProps } from 'antd';
2016-10-31 19:31:43 +08:00
2022-03-18 15:20:35 +08:00
const onMenuClick: MenuProps['onClick'] = e => {
2016-10-31 19:31:43 +08:00
console.log('click', e);
2022-03-18 15:20:35 +08:00
};
2016-10-31 19:31:43 +08:00
const menu = (
2022-03-18 15:20:35 +08:00
< Menu
onClick={onMenuClick}
items={[
{
key: '1',
label: '1st item',
},
{
key: '2',
label: '2nd item',
},
{
key: '3',
label: '3rd item',
},
]}
/>
2016-10-31 19:31:43 +08:00
);
2022-04-03 23:27:45 +08:00
export default () => (
2020-06-11 15:24:24 +08:00
< >
2016-10-31 19:31:43 +08:00
< Button type = "primary" > primary< / Button >
2017-02-04 22:35:33 +08:00
< Button > secondary< / Button >
2020-10-21 11:47:59 +08:00
< Dropdown.Button overlay = {menu} > Actions< / Dropdown.Button >
2022-04-03 23:27:45 +08:00
< />
2016-10-31 19:31:43 +08:00
);
2019-05-07 14:57:32 +08:00
```