element-ui 弹出确认提示框


element-ui 弹出确认提示框
https://www.jianshu.com/p/ff273dc81b68
图解:

代码:

 this.$confirm('此操作将任务状态改为删除状态, 是否继续?', '提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      }).then(() => {
        //点击确定的操作(调用接口)
      }).catch(() => {
        //几点取消的提示
      });

看效果: