Victor Hugo
Victor Hugo
NNuxt
Created by Victor Hugo on 9/13/2024 in #❓・help
NuxtUI Shortcut not working
Hi there friends, I'm trying to use defineShortcuts composable from NuxtUI, but it's not working when i try to use 3 combinations like: shift+meta+p, just works with: meta+p or shift+p.
defineShortcuts({
shift_p: {
handler: async () => {
console.log("pressed shift+p");
},
},
shift_meta_p: {
handler: () => {
console.log("pressed shift+meta+p");
},
},
});
defineShortcuts({
shift_p: {
handler: async () => {
console.log("pressed shift+p");
},
},
shift_meta_p: {
handler: () => {
console.log("pressed shift+meta+p");
},
},
});
Can anyone help me?
1 replies