vue-shortkey
vue-shortkey copied to clipboard
Shortcut on v-autocomplete
I am trying to use the v-shortkey in a v-autocomplete componente (vuetify), but it is not working. I have tried on mac and linux.
The way I am using:
<v-autocomplete v-shortkey.focus="{windows: ['ctrl', 'k'], mac: ['meta', 'k']}"></v-autocomplete>
Does any one have a suggestion or an idea why is it not working? Thank you all.
Hi, It's because the element that you want to get focus is inside the v-autocomplete. Try to enable the autofocus property of the v-autocomplete.
Thank you for your reply @iFgR. I have added the autofocus on the v-autocomplete component. However, the shortkey didn't work for focus when pressing this combination of keys. Do you have any idea? Once again, thank you for your help.