mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
31 lines
432 B
Markdown
31 lines
432 B
Markdown
# 图标
|
|
在按钮上使用图标。
|
|
```html
|
|
<n-button>
|
|
<template v-slot:icon>
|
|
<cash-outline />
|
|
</template>
|
|
+100 元
|
|
</n-button>
|
|
<n-button icon-placement="right">
|
|
<template v-slot:icon>
|
|
<cash-outline />
|
|
</template>
|
|
+100 元
|
|
</n-button>
|
|
```
|
|
```js
|
|
import cashOutline from 'naive-ui/lib/icons/cash-outline'
|
|
|
|
export default {
|
|
components: {
|
|
cashOutline
|
|
}
|
|
}
|
|
```
|
|
```css
|
|
.n-button {
|
|
margin: 0 8px 8px 0;
|
|
}
|
|
```
|