mint-ui message box confirm弹框确认和取消按钮的回调

调用mint-ui message box confirm方法后点击确认和取消后如何执行对应的回调函数

 MessageBox.confirm('', { 
 message: 'xxx,你确定?', 
 title: '提示', 
 confirmButtonText: 'abc', 
 cancelButtonText: '123' 
 }).then(action => { 
 if (action == 'confirm') {     //确认的回调
 console.log(1); 
 }
 }).catch(err => { 
 if (err == 'cancel') {     //取消的回调
 console.log(2);
 } 
 });

你可能感兴趣的:(vue)