Blur event not caught #543
Unanswered
LorinIonita
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi guys, I have a mounted wrapper component, which has an input child component that emits a blur event and the wrapper catches it. But in testing, although the event seems to be emitted, the method that's called by the event emit, doesn't fire.
I have a console log inside the blur handler, and it never gets fired. If I change
await aiInput.trigger('blur');
toaiInput.vm.$emit('blur');
it does fire, but the event is missing. What can I do? Anything I'm doing wrong?Beta Was this translation helpful? Give feedback.
All reactions