当前位置: 首页 > 工具软件 > Keymaster.js > 使用案例 >

keymaster的使用

司空学智
2023-12-01

安装:

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')
 类似资料: