该项目主要是用于Popconfirm 气泡确认框
点击元素,弹出气泡确认框。
¶基础用法
Popconfirm 的属性与 Popover 很类似,因此对于重复属性,请参考 Popover 的文档,在此文档中不做详尽解释。
在 Popconfirm 中,只有 title 属性可用,content 属性不会被展示。
<template>
<el-popconfirm
title="这是一段内容确定删除吗?"
>
<el-button slot="reference">删除</el-button>
</el-popconfirm>
</template>
¶自定义
可以在 Popconfirm 中自定义内容。
<template>
<el-popconfirm
confirm-button-text='好的'
cancel-button-text='不用了'
icon="el-icon-info"
icon-color="red"
title="这是一段内容确定删除吗?"
>
<el-button slot="reference">删除</el-button>
</el-popconfirm>
</template>
¶Attributes
参数 说明 类型 可选值 默认值
title 标题 String — —
confirm-button-text 确认按钮文字 String —