this.$confirm(`确定要删除该数据吗?`, {
type: "warning",
//beforeClose 阻止关闭弹窗
beforeClose: async (action, instance, done) => {
//下面这行代码就是弹出的确认删除和取消删除
if (action === "confirm") {
// 调取接口
}
} else {
//点击其他地方时就相当于点击了false
//done 关闭窗口
done();
}
},
});
elementui 删除提示框
最新推荐文章于 2024-10-17 17:07:50 发布