vue 实现快捷键录入功能
vue 实现快捷键录入功能
项目需要在页面使用快捷键,而且需要对快捷键进行维护,然后呢,就从网上抄了,改成自己的。
记录一下。
参考地址: https://www.jb51.net/article/203981.htm
首先有一个组件,用来实现快捷键的录入操作。
直接上代码:
hotkeyInput.vue
快捷键输入框 —— 用于快捷键的录入
{{ item.text }}
{{ placeholder }}
然后需要的地方引用一下。
import hotkeyInput from '@/views/modules/hotkeyInput'
components: {
hotkeyInput,
},
但是吧,选择之后的数据是这个样子的:

