v2-hotkey
v0.1.1
Published
Vue 2.x directive - binding hotkeys for components.
Downloads
4
Readme
v-hotkey
Vue 2.x directive for binding hotkeys to components.
Play with me
https://dafrok.github.io/v-hotkey
Install
$ npm i --save v2-hotkey
Usage
import Vue from 'vue'
import VueHotkey from 'v2-hotkey'
Vue.use(VueHotkey)
<template>
<span v-hotkey="keymap" v-show="show"> Press `ctrl + esc` to toggle me! Hold `enter` to hide me! </span>
</template>
<script>
export default {
data () {
return {
show: true
}
},
methods: {
toggle () {
this.show = !this.show
},
show () {
this.show = true
},
hide () {
this.show = false
}
},
computed: {
keymap () {
return {
// 'esc+ctrl' is OK.
'ctrl+esc': this.toggle,
'enter': {
keydown: this.hide,
keyup: this.show
}
}
}
}
}
</script>
Event Handler
- keydown (as default)
- keyup
Key Combination
Use one or more of following keys to fire your hotkeys.
- ctrl
- alt
- shift
- meta (windows / command)