2019-09-20 00:27:06 +08:00
|
|
|
# Icon
|
2019-12-02 02:58:45 +08:00
|
|
|
Use icon in button.
|
2019-09-20 00:27:06 +08:00
|
|
|
```html
|
2019-10-24 18:04:31 +08:00
|
|
|
<n-button>
|
|
|
|
<template v-slot:icon>
|
|
|
|
<md-save />
|
|
|
|
</template>
|
|
|
|
Save
|
|
|
|
</n-button>
|
2020-01-27 19:43:56 +08:00
|
|
|
<n-button icon-placement="right">
|
2019-10-24 18:04:31 +08:00
|
|
|
<template v-slot:icon>
|
|
|
|
<md-save />
|
|
|
|
</template>
|
|
|
|
Save
|
|
|
|
</n-button>
|
|
|
|
```
|
|
|
|
```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-20 00:27:06 +08:00
|
|
|
```
|
|
|
|
```css
|
|
|
|
.n-button {
|
|
|
|
margin: 0 8px 8px 0;
|
|
|
|
}
|
2019-12-02 02:58:45 +08:00
|
|
|
```
|