antd-button-group

本组件设计为超过一定数量的按钮将展示在`Dropdown`中

Usage no npm install needed!

<script type="module">
  import antdButtonGroup from 'https://cdn.skypack.dev/antd-button-group';
</script>

README

ButtonGroup

介绍

  1. 本组件基于ReactAnt Design,适用于React + Ant Design项目
  2. 本组件设计为超过一定数量的按钮将展示在Dropdown

sample

使用方式

安装

npm i antd-button-group

使用

import ButtonGroup from 'antd-button-group'
<ButtonGroup>
  <Button size='small' type='link' onClick={() => message.success('编辑')}>编辑</Button>
  <Button size='small' type='link' danger onClick={() => message.warning('删除')}>删除</Button>
  <Button size='small' type='link' onClick={() => message.success('随便什么操作')}>随便什么操作</Button>
  <Button type='primary' onClick={() => message.success('primary to link')}>primary to link</Button>
  <Button size='small' type='link' danger onClick={() => message.error('按钮 danger')}>按钮 danger</Button>
  <Menu.Divider />
  <a onClick={() => message.success('a标签')}>a标签</a>
</ButtonGroup>

API

Props

属性 说明 类型 默认值 可选值
max 外部显示几个按钮,其余放在Dropdown中 Number|String 2
placement Dropdown弹出位置 String bottomLeft bottomLeftbottomCenter
bottomRight
topLefttopCentertopRight
arrow Dropdown下拉框箭头是否显示 Boolean false
trigger 触发下拉的行为, 移动端不支持 hover Array|String click clickhovercontextMenu
icon 右侧更多 icon PropTypes.elementType Antd Icon MoreOutlined
iconStyle 右侧更多 icon 样式 Object { fontSize: 16, verticalAlign: 'middle', marginLeft: 2 }
children 按钮 PropTypes.node -

children

PropTypes.node 说明
<Button type='primary'>按钮</Button> Dropdown中的Button将会自动转为<Button type='link'>按钮</Button>
<Menu.Divider /> 使用该组件渲染分割线
<Button type='primary' disabled>按钮</Button>
<a disabled onClick={() => message.success('a标签')}>a标签</a>
disabled不可用