今天更新了项目中的elementui到2.13.0的版本了,发现多了一个很漂亮的Popconfirm组件,但是使用上出现了一个问题,那就是代码按照API实现了,但是却找不到可以实现相应的事件函数:

在这里插入图片描述
点击好的并没有什么事件,一开始想到将@click放到里面的button上,发现也不行,于是网上搜了下源码才找到解决办法:

在Popconfirm标签中添加@onConfirm="“或者@onCancel=”",它们分别代表了点击‘不用了’和点击‘好的’

例子

template中:

						<el-popconfirm @onConfirm="pop(1)"
						  confirmButtonText='好的'
						  cancelButtonText='不用了'
						  icon="el-icon-info"
						  iconColor="red"
						  title="这是一段内容确定删除吗?"
						>
						  <el-button  slot="reference">删除</el-button>
						</el-popconfirm>

script中

			//测试
			pop(index){
				console.log(index)
			},

点击好的:
在这里插入图片描述

GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45 7 个月前
a07f3a59 * Update transition.md * Update table.md * Update transition.md * Update table.md * Update transition.md * Update table.md * Update table.md * Update transition.md * Update popover.md 7 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐