当我们在input框中按tab键想触发事件时,发现失去焦点并不会触发事件。
<!doctype html>
<html lang="en">
<head><meta charset="UTF-8"><title>Document</title><script type="text/javascript" src="js/vue.js"></script>
</head>
<body><!-- 准备好一个容器 --><div id="root"><input type="text" placeholder="按下回车提示输入" @keyup.tab="showInfo"></div><script>// 创建Vue实例new Vue({el: '#root',data: {msg: 'Vue2'},methods: {showInfo() {alert("我是Vue2");}}})</script>
</body>
</html>
应该修改为:
@keydown.tab="showInfo"
其余ctrl、meta(win键)、alt同理。