mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
24 lines
492 B
Markdown
24 lines
492 B
Markdown
# Ghost
|
|
Ghost button has transparent background.
|
|
```html
|
|
<n-button ghost>Default</n-button>
|
|
<n-button type="primary" ghost>Primary</n-button>
|
|
<n-button type="info" ghost>Info</n-button>
|
|
<n-button type="success" ghost>Success</n-button>
|
|
<n-button type="warning" ghost>Warning</n-button>
|
|
<n-button type="error" ghost>Error</n-button>
|
|
```
|
|
```js
|
|
import mdSave from 'naive-ui/lib/icons/md-save'
|
|
|
|
export default {
|
|
components: {
|
|
mdSave
|
|
}
|
|
}
|
|
```
|
|
```css
|
|
.n-button {
|
|
margin: 0 8px 8px 0;
|
|
}
|
|
``` |