标签:control input eve htm ext 文本框 inpu 键盘 vue
为文本框回车键绑定事件
<input type="text" class="form-control" v-model="name" @keyup.enter="add">
Vue.config.keyCodes.名称 = 按键值
来自定义案件修饰符的别名:Vue.config.keyCodes.f2 = 113;
<input type="text" v-model="name" @keyup.f2="add">
标签:control input eve htm ext 文本框 inpu 键盘 vue
原文地址:https://www.cnblogs.com/moon1992/p/11074828.html