Replies: 2 comments 4 replies
-
The current implementation doesn't prevent the listener to fire if another key is pressed at the same time. Even if you hold shift, you are still pressing tab. It could be considered a bug by some but changing it could be considered a breaking change by other so you need to pitch it to the maintainer. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Does this mean that it cannot be done like playground (Vue.js) ? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I assign
@keydown.shift.tab
,@keydown.tab
,@keydown.up
and@keydown.down
tobutton
@keydown.shift.tab
and@keydown.up
: focus previous button@keydown.tab
and@keydown.down
: focus next buttonWhen keydown shift+tab,
console output:
Is there something wrong with my code?
Beta Was this translation helpful? Give feedback.
All reactions