[Vuejs]-Why does a keydown event get broadcasted to a newly rendered component?

1👍

This is because the events are flowing like this:
keydown renders the new component -> focus moved to new component -> keyup fires in new component (where is focus now) and character stays there.

Change the trigger to keyup and it should work.

Leave a comment