2019-09-21 17:03:05 +08:00
|
|
|
# 图标
|
2019-12-02 02:58:45 +08:00
|
|
|
在按钮上使用图标。
|
2019-09-20 00:27:06 +08:00
|
|
|
```html
|
2019-12-04 18:17:25 +08:00
|
|
|
<n-button>
|
|
|
|
<template v-slot:icon>
|
2020-05-30 00:29:18 +08:00
|
|
|
<cash-outline />
|
2019-12-04 18:17:25 +08:00
|
|
|
</template>
|
2020-05-30 00:29:18 +08:00
|
|
|
+100 元
|
2019-12-04 18:17:25 +08:00
|
|
|
</n-button>
|
2020-01-27 19:43:56 +08:00
|
|
|
<n-button icon-placement="right">
|
2019-12-04 18:17:25 +08:00
|
|
|
<template v-slot:icon>
|
2020-05-30 00:29:18 +08:00
|
|
|
<cash-outline />
|
2019-12-04 18:17:25 +08:00
|
|
|
</template>
|
2020-05-30 00:29:18 +08:00
|
|
|
+100 元
|
2019-12-04 18:17:25 +08:00
|
|
|
</n-button>
|
|
|
|
```
|
|
|
|
```js
|
2020-05-30 00:29:18 +08:00
|
|
|
import cashOutline from 'naive-ui/lib/icons/cash-outline'
|
2019-12-04 18:17:25 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2020-05-30 00:29:18 +08:00
|
|
|
cashOutline
|
2019-12-04 18:17:25 +08:00
|
|
|
}
|
|
|
|
}
|
2019-09-20 00:27:06 +08:00
|
|
|
```
|
|
|
|
```css
|
|
|
|
.n-button {
|
|
|
|
margin: 0 8px 8px 0;
|
|
|
|
}
|
2019-12-02 02:58:45 +08:00
|
|
|
```
|