1.在methods中寫下方法
showkey() {
document.onkeydown = function() {
console.log(window.event.returnValue);
if (window.event.keyCode == 13) {
window.event.returnValue = false;
}
console.log(window.event.returnValue);
};
},
2.在mounted中
this.showkey();
3.在帶有默認鍵盤事件的方法中調(diào)用
this.showkey();