How to add key events to vueflow? #287
-
When reading the docs i can't find anything about it, so if i overlooked something please let me know :) I'm trying to add @keyup.space or @keydown.space to vueflow element, it's not triggede when pressing space while focusing vueflow element. Am i doing something wrong, or is this not possible yet? :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The Vue Flow element is just a regular div so technically it should work but you'd probably be better of just listening to the global key events instead of trying to add them to that specific element, which would force you to have to focus the element before being able to send the event. What exactly is your use or goal? Maybe there's another way :) |
Beta Was this translation helpful? Give feedback.
The Vue Flow element is just a regular div so technically it should work but you'd probably be better of just listening to the global key events instead of trying to add them to that specific element, which would force you to have to focus the element before being able to send the event.
What exactly is your use or goal? Maybe there's another way :)