[Vue] Setup custom keyCode
Vue provide some shortcut methods:
- @mousemove.stopis comparable to- e.stopPropogation()
- @mousemove.preventthis is like- e.preventDefault()
- @submit.preventthis will no longer reload the page on submission
- @click.oncenot to be confused with v-once, this click eventwill be triggered once.
- v-model.lazywon’t populate the content automatically, it will wait to bind until an event happens.
You can define your own shortcut methods as well: doc
Vue.config.keyCodes = {
  v: 86,
  f1: 112,
  // camelCase won`t work
  mediaPlayPause: 179,
// instead you can use kebab-case with double quotation marks
  "media-play-pause": 179,
  up: [38, 87]
}
<input type="text" @keyup.media-play-pause="method">
[Vue] Setup custom keyCode的更多相关文章
- Vue Study [1]: Vue Setup
		Description The article for vue.js Setup. Original post link:https://www.cnblogs.com/markjiang7m2/p/ ... 
- (错误记录)Vue: Unknown custom element
		错误: vue.js:634 [Vue warn]: Unknown custom element: <ve-pie> - did you register the component c ... 
- vue.js中英文api
		全局配置 Vue.config is an object containing Vue's global configurations. You can modify its properties l ... 
- 10.2 Vue 环境安装
		Vue 环境安装 环境准备 nodejs 下载安装 https://nodejs.org/en/ 查看下载版本 C:\>node -v v7.6.0 C:\>npm -v 4.1.2 ... 
- vue组件基础之创建与使用
		一.创建组件 <script src="vue.js"></script> <!--引入vue.js文件--> <div id=" ... 
- vue命令式组件和插件编写
		一直在写各种业务,好多基本用法都忘记了,回顾一下: 一.vue各种UI库里的命令式组件比如element-ui里Notification组件,可以这样调用 this.$notify({ title: ... 
- vue v-on-clickaway
		vue v-on-clickaway Custom directive 自定义指令 https://stackoverflow.com/questions/36170425/detect-click- ... 
- vue 快速入门 系列 —— vue 的基础应用(上)
		其他章节请看: vue 快速入门 系列 vue 的基础应用(上) Tip: vue 的基础应用分上下两篇,上篇是基础,下篇是应用. 在初步认识 vue一文中,我们已经写了一个 vue 的 hello- ... 
- Mac搭建Vue开发环境
		1.安装Homebrew /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/ ... 
随机推荐
- linux 怎么用 名字 代替 ip ?
			比如 ssh 1.1.1.1 变成 ssh usr1 在每台机子的/etc/hosts文件中添加ip与名字的对应表 
- [oracle]表空间情况查看、占用、扩容、使用情况、空间维护等操作
			--查询表空间使用情况SELECT Upper(F.TABLESPACE_NAME) "表空间名", D.TOT_GROOTTE_MB ... 
- Win7 下 PB (PowerBuilder) Insert Control 崩溃的解决办法
			环境: WIN7 x86 PB8.0, x64系统目录不同,不过也可以试试 Insert -> OLE... -> Insert Control - 崩溃 如果网上提供的办法解决不了你 ... 
- centos右上角wired图标消失有效解决方案
			最近在学习Linux配置nginx时,左上角的wired图标突然没了,很神奇.然后在网上按着很多博客说的去改,都没用,最后终于根据下面参考博客内的方案解决了问题,嘿嘿. mv /var/lib/Net ... 
- CAD在一个点构造选择集
			主要用到函数说明: IMxDrawSelectionSet::SelectAtPoint 在一个点构造选择集.详细说明如下: 参数 说明 [in] IMxDrawPoint* point 点坐标 [i ... 
- Redis系列(十一)--阿里云开发规范
			本文主要介绍阿里云Redis的开发规范,主要从以下几个方面说明: 1.键值设计 2.命令使用 3.客户端使用 4.相关工具 一.键值设计 1.key name设计 1).[建议]:可读性和可管理性 以 ... 
- Microsoft SQL Server Transact-SQL
			Microsoft SQL Server Transact-SQL 1.SQL 1.1数据定义语言(DDL) create 创建数据库或数据库对象:alter 修改数据库或数据库对象:drop 删除数 ... 
- 微服务网关从零搭建——(三)Ocelot网关 + identity4
			增加验证服务 1.创建名为AuthService 的core 空项目 2.修改startup文件 using System; using System.Collections.Generic; usi ... 
- Python Web开发
			参考原文 Python廖雪峰 WSGI接口 WSGI(Web Server Gateway Interface)是一个接口,用来屏蔽底部的细节(如TCP的建立连接,HTTP原始请求和响应格式等).WS ... 
- 本地搭建easy-mock
			easy-mock要用nodejs启动,需要先安装nodejs ubuntu系统: apt install node centos系统: curl --silent --location https: ... 
