Vue-ShortKey-VueJS 2.x的插件在单个侦听器中全局接受快捷方式。 安装 npm install vue-shortkey --save 用法 Vue . use ( require ( 'vue-shortkey' ) ) 将shortkey指令添加到接受快捷方式的元素中。 快捷键必须明确使用哪个键。 运行功能 下面的代码确保组合键ctrl + alt + o将执行'theAction'方法。 < button v-shortkey =" ['ctrl', 'alt', 'o'] " @shortkey =" theAction() " > Open <