mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
28 lines
427 B
Markdown
28 lines
427 B
Markdown
|
# Custom Icon
|
||
|
```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>
|
||
|
<n-button>Quit</n-button>
|
||
|
</template>
|
||
|
Are you sure to quit this game?
|
||
|
</n-popconfirm>
|
||
|
```
|
||
|
```js
|
||
|
import mdHand from 'naive-ui/lib/icons/md-hand'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
mdHand
|
||
|
}
|
||
|
}
|
||
|
```
|