naive-ui/demo/documentation/components/button/enUS/ghost.md

28 lines
564 B
Markdown
Raw Normal View History

2019-09-21 17:03:05 +08:00
# Ghost
Ghost button has transparent background.
```html
<n-button ghost>Default</n-button>
<n-button round type="primary" ghost>Primary</n-button>
<n-button type="info" ghost>Info</n-button>
2019-10-24 18:04:31 +08:00
<n-button circle type="success" ghost >
<template v-slot:icon>
<md-save />
</template>
</n-button>
2019-09-21 17:03:05 +08:00
<n-button type="warning" ghost>Warning</n-button>
<n-button type="error" ghost disabled>Error</n-button>
```
2019-10-24 18:04:31 +08:00
```js
2019-10-25 12:48:10 +08:00
import mdSave from 'naive-ui/lib/icons/md-save'
2019-10-24 18:04:31 +08:00
export default {
components: {
mdSave
}
}
```
2019-09-21 17:03:05 +08:00
```css
.n-button {
margin: 0 8px 8px 0;
}
```