mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-24 12:45:18 +08:00
453 B
453 B
Custom Icon
<n-popconfirm
positive-text="ok"
negative-text="not ok"
>
<template v-slot:icon>
<n-icon
color="red"
>
<hand-icon />
</n-icon>
</template>
<template v-slot:trigger>
<n-button>Quit Game</n-button>
</template>
How can you be strong without purchasing?
</n-popconfirm>
import { MdHand as HandIcon } from '@vicons/ionicons-v4'
export default {
components: {
HandIcon
}
}