2018-01-24 22:53:45 +08:00
|
|
|
<cn>
|
|
|
|
#### 幽灵按钮
|
|
|
|
幽灵按钮将其他按钮的内容反色,背景变为透明,常用在有色背景上。
|
|
|
|
</cn>
|
|
|
|
|
|
|
|
<us>
|
|
|
|
#### Ghost Button
|
|
|
|
`ghost` property will make button's background transparent, it is common used in colored background.
|
|
|
|
</us>
|
2018-02-07 18:44:11 +08:00
|
|
|
|
2018-01-24 22:53:45 +08:00
|
|
|
```html
|
2017-11-03 18:46:18 +08:00
|
|
|
<template>
|
|
|
|
<div :style="{ background: 'rgb(190, 200, 200)', padding: '26px 16px 16px' }">
|
2018-01-23 18:55:39 +08:00
|
|
|
<a-button type="primary" ghost>Primary</a-button>
|
|
|
|
<a-button ghost>Default</a-button>
|
|
|
|
<a-button type="dashed" ghost>Dashed</a-button>
|
2019-08-12 11:30:32 +08:00
|
|
|
<a-button type="danger" ghost>Danger</a-button>
|
|
|
|
<a-button type="link" ghost>Link</a-button>
|
2017-11-03 18:46:18 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
2018-01-24 22:53:45 +08:00
|
|
|
```
|