全局監聽enter鍵,是把監聽事件綁定到document上
常用的keyCode鍵盤編碼在這里:https://www.cnblogs.com/wbyixx/p/12029508.html
created: function() {
var _this = this;
document.onkeydown = function(e) {
let key = window.event.keyCode;
if (key == 13) {
_this.submit();
}
};
},
methods: {
submit: function() {
alert("監聽到enter鍵");
},
}
