【vue】---- ElementUI 中的$confirm 弹窗报错 Uncaught (in promise) cancel

1、问题描述:在 vue 项目中使用 ElementUI 框架中的 $confirm 弹窗,在点击“取消”或“关闭弹窗”时出现 Uncaught (in promise) cancel 报错。

2、问题分析:this.$confirm 方法内置 pormise 方法,所以不能把 .catch() 去掉,否则在取消操作时将无法捕获。

3、解决方式:

原文地址:https://www.cnblogs.com/pinkpinkc/p/13218590.html