vue中$confirm弹出时就直接走then方法了
程序员文章站
2022-05-31 18:05:17
...
项目中遇到这样的情况:confirm框一弹出来就立马执行了then方法中的代码,不符合业务逻辑
代码如下:
this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(
this.$message({
type: 'success',
message: '删除成功!'
})
).catch(function(){})
解决办法:then应该是个函数
this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() =>{
this.$message({
type: 'success',
message: '删除成功!'
})
}
).catch(function(){})
```
上一篇: 实现textarea内换行