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

28 lines
442 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
color="red"
2019-12-09 13:27:32 +08:00
>
<md-hand />
</n-icon>
2019-10-21 15:37:41 +08:00
</template>
<template v-slot:activator>
2020-01-31 22:36:22 +08:00
<n-button>Quit Game</n-button>
2019-10-21 15:37:41 +08:00
</template>
2020-01-31 22:36:22 +08:00
How can you be strong without purchasing?
2019-10-21 15:37:41 +08:00
</n-popconfirm>
2019-12-09 13:27:32 +08:00
```
```js
import mdHand from 'naive-ui/lib/icons/md-hand'
export default {
components: {
mdHand
}
}
2019-10-21 15:37:41 +08:00
```