2023-04-16 21:52:44 +08:00
|
|
|
|
<docs lang="zh-CN">
|
|
|
|
|
---
|
|
|
|
|
title: 按钮类型
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
按钮有五种类型:主按钮、次按钮、虚线按钮、文本按钮和链接按钮。主按钮在同一个操作区域最多出现一次。
|
|
|
|
|
</docs>
|
|
|
|
|
|
|
|
|
|
<docs lang="en-US">
|
|
|
|
|
---
|
|
|
|
|
title: Type
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
There are `primary` button, `default` button, `dashed` button, `text` button and `link` button in antd.
|
|
|
|
|
</docs>
|
|
|
|
|
|
|
|
|
|
<template>
|
2023-04-17 08:08:22 +08:00
|
|
|
|
<a-space wrap>
|
|
|
|
|
<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>
|
2023-04-17 10:51:11 +08:00
|
|
|
|
<a-button type="text">按钮</a-button>
|
2023-04-17 08:08:22 +08:00
|
|
|
|
<a-button type="link">Link Button</a-button>
|
|
|
|
|
</a-space>
|
2023-04-16 21:52:44 +08:00
|
|
|
|
</template>
|