码迷,mamicode.com
首页 > 其他好文 > 详细

[Vue] : 键盘修饰符

时间:2019-06-24 01:03:27      阅读:98      评论:0      收藏:0      [点我收藏+]

标签: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">

[Vue] : 键盘修饰符

标签:control   input   eve   htm   ext   文本框   inpu   键盘   vue   

原文地址:https://www.cnblogs.com/moon1992/p/11074828.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!