mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 09:21:25 +08:00
28 lines
517 B
Vue
28 lines
517 B
Vue
|
<docs>
|
|||
|
---
|
|||
|
order: 9
|
|||
|
title:
|
|||
|
zh-CN: 危险按钮
|
|||
|
en-US: Danger Button
|
|||
|
---
|
|||
|
|
|||
|
## zh-CN
|
|||
|
|
|||
|
在 2.2.0 之后,危险成为一种按钮属性而不是按钮类型。
|
|||
|
|
|||
|
## en-US
|
|||
|
|
|||
|
danger is a property of button after antd 2.2.0.
|
|||
|
|
|||
|
</docs>
|
|||
|
|
|||
|
<template>
|
|||
|
<div>
|
|||
|
<a-button type="primary" danger>Primary</a-button>
|
|||
|
<a-button danger>Default</a-button>
|
|||
|
<a-button type="dashed" danger>Dashed</a-button>
|
|||
|
<a-button type="text" danger>Text</a-button>
|
|||
|
<a-button type="link" danger>Link</a-button>
|
|||
|
</div>
|
|||
|
</template>
|