You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

652 B

带下拉框的按钮

  • order: 4

左边是按钮,右边是额外的相关功能菜单。


import { Menu, Dropdown } from 'antd';
const DropdownButton = Dropdown.Button;

const menu = <Menu>
  <Menu.Item>
    <a target="_blank" href="http://www.alipay.com/">第一个菜单项</a>
  </Menu.Item>
  <Menu.Item>
    <a target="_blank" href="http://www.taobao.com/">第二个菜单项</a>
  </Menu.Item>
  <Menu.Item>
    <a target="_blank" href="http://www.tmall.com/">第三个菜单项</a>
  </Menu.Item>
</Menu>;

ReactDOM.render(
<DropdownButton overlay={menu} type="primary">
  某功能按钮
</DropdownButton>
, mountNode);