// 删除弹框
handleDeleteShow (index, row) {
const obj = {
id: row.id
}
console.log('obj', obj)
this.$confirm('此操作将删除该条数据,是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
.then(() => {
// 确定
})
.catch(() => {
// 取消
})
},
vue删除弹窗
最新推荐文章于 2024-09-14 08:30:00 发布