2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 0
|
2016-04-20 16:28:07 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 按钮类型
|
|
|
|
en-US: Type
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-06-05 20:26:41 +08:00
|
|
|
|
2016-04-20 16:28:07 +08:00
|
|
|
## zh-CN
|
2015-06-05 20:26:41 +08:00
|
|
|
|
2017-01-23 22:24:36 +08:00
|
|
|
按钮有四种类型:主按钮、次按钮、虚线按钮、危险按钮。主按钮在同一个操作区域最多出现一次。
|
2015-05-15 16:00:08 +08:00
|
|
|
|
2016-04-20 16:28:07 +08:00
|
|
|
## en-US
|
|
|
|
|
2017-01-23 22:24:36 +08:00
|
|
|
There are `primary` button, `default` button, `dashed` button and `danger` button in antd.
|
2016-04-20 16:28:07 +08:00
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Button } from 'antd';
|
2015-09-27 16:30:35 +08:00
|
|
|
|
2016-04-20 16:28:07 +08:00
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<Button type="primary">Primary</Button>
|
|
|
|
<Button>Default</Button>
|
|
|
|
<Button type="dashed">Dashed</Button>
|
2017-01-23 22:24:36 +08:00
|
|
|
<Button type="danger">Danger</Button>
|
2018-06-27 15:55:04 +08:00
|
|
|
</div>,
|
|
|
|
mountNode);
|
2015-05-15 16:00:08 +08:00
|
|
|
````
|