mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 09:21:25 +08:00
26 lines
610 B
Vue
26 lines
610 B
Vue
|
<docs>
|
|||
|
---
|
|||
|
order: 0
|
|||
|
title:
|
|||
|
zh-CN: 按钮类型
|
|||
|
en-US: Type
|
|||
|
---
|
|||
|
|
|||
|
## zh-CN
|
|||
|
|
|||
|
按钮有五种类型:主按钮、次按钮、虚线按钮、文本按钮和链接按钮。主按钮在同一个操作区域最多出现一次。
|
|||
|
|
|||
|
## en-US
|
|||
|
|
|||
|
There are `primary` button, `default` button, `dashed` button, `text` button and `link` button in antd.
|
|||
|
|
|||
|
</docs>
|
|||
|
|
|||
|
<template>
|
|||
|
<a-button type="primary">Primary Button</a-button>
|
|||
|
<a-button>Default Button</a-button>
|
|||
|
<a-button type="dashed">Dashed Button</a-button>
|
|||
|
<a-button type="text">Text Button</a-button>
|
|||
|
<a-button type="link">Link Button</a-button>
|
|||
|
</template>
|