# Popconfirm 气泡确认框
点击元素,弹出气泡确认框。
# 基础用法
Copy
# 自定义
可以在 Popconfirm 中自定义内容。
Copy
# Attributes
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|---|---|---|---|---|
| content | 标题 | String | -- | -- |
| confirm-button-text | 确认按钮文字 | String | -- | -- |
| cancel-button-text | 取消按钮文字 | String | -- | -- |
| confirm-button-type | 确认按钮类型 | WuButtonType | primary、success、warning、danger、info、text | primary |
| cancel-button-type | 取消按钮类型 | WuButtonType | primary、success、warning、danger、info、text | text |
| hide-icon | 是否隐藏 Icon | Boolean | true、 false | false |
# Event
| 事件名 | 说明 | 参数 |
|---|---|---|
| confirm | 确认按钮点击 | (event: CustomEvent) => void |
| cancel | 取消按钮点击 | (event: CustomEvent) => void |
# Slot
| 参数 | 说明 |
|---|---|
| reference | 触发 Popconfirm 显示的 HTML 元素 |
| icon | 提示 content 前的 icon 内容,用于内容强调 |