ant-design-vue/components/popconfirm/demo/icon.md

19 lines
342 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<cn>
#### 自定义 Icon 图标
使用 `icon` 自定义提示 `icon`
</cn>
<us>
#### Customize icon
Set `icon` props to customize the icon.
</us>
```tpl
<template>
<a-popconfirm title="Are you sure">
<a-icon slot="icon" type="question-circle-o" style="color: red" />
<a href="#">Delete</a>
</a-popconfirm>
</template>
```