Open hackerESQ opened 3 years ago
Hello @iFgR, this is a fantastic library! Great work!
I am making a cross-platform web app and your suggestion in #103 helps a lot. But it seems that is incompatible with the .once modifier?
.once
For example, this triggers the event:
<v-btn @click="saveEvent" @shortkey="saveEvent" v-shortkey="{windows: ['ctrl', 's'], mac: ['meta', 's']}" > Save Event </v-btn>
But this does not:
<v-btn @click="saveEvent" @shortkey="saveEvent" v-shortkey.once="{windows: ['ctrl', 's'], mac: ['meta', 's']}" > Save Event </v-btn>
I tried looking at the source, but I'm not seeing any obvious issues. Any suggestions?
Hi @hackerESQ, I'll reproduce and check this out.
Hello @iFgR, this is a fantastic library! Great work!
I am making a cross-platform web app and your suggestion in #103 helps a lot. But it seems that is incompatible with the
.once
modifier?For example, this triggers the event:
But this does not:
I tried looking at the source, but I'm not seeing any obvious issues. Any suggestions?