38 lines
831 B
Markdown
38 lines
831 B
Markdown
<cn>
|
|
#### 按钮类型
|
|
按钮有五种类型:主按钮、次按钮、虚线按钮、危险按钮和链接按钮。主按钮在同一个操作区域最多出现一次。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Type
|
|
There are `primary` button, `default` button, `dashed` button , `danger` button and `link` button in antd.
|
|
</us>
|
|
|
|
```vue
|
|
<template>
|
|
<div>
|
|
<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>
|
|
<a-config-provider :auto-insert-space-in-button="false">
|
|
<a-button type="primary">
|
|
按钮
|
|
</a-button>
|
|
</a-config-provider>
|
|
<a-button type="primary">
|
|
按钮
|
|
</a-button>
|
|
<a-button type="link">
|
|
Link
|
|
</a-button>
|
|
</div>
|
|
</template>
|
|
```
|