vue项目里登陆界面实现回车登陆

vue项目里登陆界面实现回车登陆 全局监听enter键,是把监听事件绑定到document上,无需获取焦点之类的 created() { let that = this; document.onkeydown =function(e){ e = window.event || e; if(that.$route.path=='/login'&&(e.code
相关文章
相关标签/搜索