mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-24 12:45:18 +08:00
18 lines
308 B
Markdown
18 lines
308 B
Markdown
|
# Custom Icon
|
||
|
```html
|
||
|
<n-popconfirm
|
||
|
positive-text="ok"
|
||
|
negative-text="not ok"
|
||
|
>
|
||
|
<template v-slot:icon>
|
||
|
<n-icon
|
||
|
type="md-hand"
|
||
|
color="red"
|
||
|
/>
|
||
|
</template>
|
||
|
<template v-slot:activator>
|
||
|
<n-button>Quit</n-button>
|
||
|
</template>
|
||
|
Are you sure to quit this game?
|
||
|
</n-popconfirm>
|
||
|
```
|