We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.6.8
https://codesandbox.io/s/wwoxp636jk
Add a click listener on window in a child component
Before Vue 2.6, the click event was not propagated to the child component because it was not created yet.
The click event is now propagated to the child after it is created and mounted.
Do I need now to explicitly add the modifier .stop to all my parent click events if I add click listeners on window in my child components?
.stop
The text was updated successfully, but these errors were encountered:
Duplicate of #9340 Also see #9478 and #9464
Sorry, something went wrong.
No branches or pull requests
Version
2.6.8
Reproduction link
https://codesandbox.io/s/wwoxp636jk
Steps to reproduce
Add a click listener on window in a child component
What is expected?
Before Vue 2.6, the click event was not propagated to the child component because it was not created yet.
What is actually happening?
The click event is now propagated to the child after it is created and mounted.
Do I need now to explicitly add the modifier
.stop
to all my parent click events if I add click listeners on window in my child components?The text was updated successfully, but these errors were encountered: