ant-design-vue/components/button/demo/basic.md

23 lines
503 B
Markdown
Raw Normal View History

2018-01-24 15:39:21 +08:00
<cn>
#### 按钮类型
按钮有四种类型:主按钮、次按钮、虚线按钮、危险按钮。主按钮在同一个操作区域最多出现一次。
</cn>
<us>
#### Type
There are `primary` button, `default` button, `dashed` button and `danger` button in antd.
</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>
</div>
</template>
```
2018-01-24 15:39:21 +08:00