You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/button/demo/ghost.md

20 lines
576 B

7 years ago
<cn>
#### 幽灵按钮
幽灵按钮将其他按钮的内容反色,背景变为透明,常用在有色背景上。
</cn>
<us>
#### Ghost Button
`ghost` property will make button's background transparent, it is common used in colored background.
</us>
```html
7 years ago
<template>
<div :style="{ background: 'rgb(190, 200, 200)', padding: '26px 16px 16px' }">
7 years ago
<a-button type="primary" ghost>Primary</a-button>
<a-button ghost>Default</a-button>
<a-button type="dashed" ghost>Dashed</a-button>
<a-button type="danger" ghost>danger</a-button>
7 years ago
</div>
</template>
7 years ago
```