element this.$confirm确认框,确认按钮阻止键盘回车事件

beforeClose(action, instance, done) {
if (action === "confirm") {
instance.$refs["confirm"].$el.onclick = (function (e) {
e = e || window.event;
if (e.detail != 0) {
done();
}
})();
} else {
done();
}
},

参考文献:https://blog.csdn.net/zo429515/article/details/105510999
参考文献里给click添加的function没有函数自调,结果会导致用鼠标第一次点击【确认】无效,第二次才有效。

你可能感兴趣的:(element this.$confirm确认框,确认按钮阻止键盘回车事件)