from src/helper.js
const FORBIDDEN_NODES = ['INPUT', 'TEXTAREA', 'SELECT']
if (FORBIDDEN_NODES.includes(nodeName)) return
I want to enable v-hotkey shortcut in editable elements(like input, select, textarea).
Can this be a option instead of hard-coded?
from
src/helper.jsI want to enable v-hotkey shortcut in editable elements(like input, select, textarea).
Can this be a option instead of hard-coded?