naive-ui/demo/documentation/components/popconfirm/zhCN/customIcon.md

28 lines
432 B
Markdown
Raw Normal View History

2020-01-31 22:36:22 +08:00
# 自定义图标
2019-12-23 16:31:26 +08:00
```html
<n-popconfirm
positive-text="ok"
negative-text="not ok"
>
<template v-slot:icon>
<n-icon
color="red"
>
<md-hand />
</n-icon>
</template>
<template v-slot:activator>
2020-01-31 22:36:22 +08:00
<n-button>退出游戏</n-button>
2019-12-23 16:31:26 +08:00
</template>
2020-01-31 22:36:22 +08:00
不充钱怎么变强?
2019-12-23 16:31:26 +08:00
</n-popconfirm>
```
```js
import mdHand from 'naive-ui/lib/icons/md-hand'
export default {
components: {
mdHand
}
}
```