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.
 
 

734 B

order title
0 [{zh-CN 基本} {en-US Basic}]

zh-CN

最简单的下拉菜单。

en-US

The most basic dropdown menu.

import { Menu, Dropdown, Icon } from 'antd';

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(
  <Dropdown overlay={menu}>
    <a className="ant-dropdown-link" href="#">
      触发链接 <Icon type="down" />
    </a>
  </Dropdown>
, mountNode);