美文网首页
element的二次确认提示框

element的二次确认提示框

作者: 无尘粉笔 | 来源:发表于2020-10-14 15:04 被阅读0次
this.$confirm('是否继续此操作?', '提示', {
    confirmButtonText: '确定',
    cancelButtonText: '取消',
    type: 'warning'
  }).then(() => {
      alert('完成')
    }
  ).catch(() => {
    this.$message({
      type: 'info',
      message: '已取消'
    });
  });

相关文章

网友评论

      本文标题:element的二次确认提示框

      本文链接:https://www.haomeiwen.com/subject/askwpktx.html