ant-design/components/button/demo/basic.md
2020-01-06 10:38:51 +08:00

552 B

order title
0
zh-CN en-US
按钮类型 Type

zh-CN

按钮有四种类型:主按钮、次按钮、虚线按钮和链接按钮。主按钮在同一个操作区域最多出现一次。

en-US

There are primary button, default button, dashed button and link button in antd.

import { Button } from 'antd';

ReactDOM.render(
  <div>
    <Button type="primary">Primary</Button>
    <Button>Default</Button>
    <Button type="dashed">Dashed</Button>
    <Button type="link">Link</Button>
  </div>,
  mountNode,
);