安装:
npm intall keymaster -S
使用:
import key from 'keymaster'
// 绑定快捷键
key('a',function(){
console.log('您自定义了快捷键a)
return false
})
key('ctrl+a', function(){
console.log('您定义了组件快捷键 ctrl + a')
return false
})
key('ctrl+a,command+a', function(){
console.log('您定义了组件快捷键 ctrl+a,command+a')
return false
})
// 快捷键解绑
key.unbind('a')