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

18 lines
308 B
Markdown
Raw Normal View History

2019-10-21 15:37:41 +08:00
# 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>
```