2018-01-24 15:39:21 +08:00
|
|
|
|
|
|
|
<cn>
|
|
|
|
#### 按钮类型
|
2019-08-12 11:30:32 +08:00
|
|
|
按钮有四种类型:主按钮、次按钮、虚线按钮、危险按钮和链接按钮。主按钮在同一个操作区域最多出现一次。
|
2018-01-24 15:39:21 +08:00
|
|
|
</cn>
|
|
|
|
|
|
|
|
<us>
|
|
|
|
#### Type
|
2019-08-12 11:30:32 +08:00
|
|
|
There are `primary` button, `default` button, `dashed` button and `danger` button and `link` button in antd.
|
2018-01-24 15:39:21 +08:00
|
|
|
</us>
|
2018-01-23 18:55:39 +08:00
|
|
|
|
|
|
|
```html
|
|
|
|
<template>
|
2018-03-02 16:54:22 +08:00
|
|
|
<div>
|
2018-01-23 18:55:39 +08:00
|
|
|
<a-button type="primary">Primary</a-button>
|
|
|
|
<a-button>Default</a-button>
|
|
|
|
<a-button type="dashed">Dashed</a-button>
|
|
|
|
<a-button type="danger">Danger</a-button>
|
2019-03-13 09:38:54 +08:00
|
|
|
<a-config-provider :autoInsertSpaceInButton="false">
|
|
|
|
<a-button type="primary">按钮</a-button>
|
|
|
|
</a-config-provider>
|
|
|
|
<a-button type="primary">按钮</a-button>
|
2019-08-12 11:30:32 +08:00
|
|
|
<a-button type="link">Link</a-button>
|
2018-01-23 18:55:39 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
```
|
2018-01-24 15:39:21 +08:00
|
|
|
|