You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Modifier .stop is equivalent to e.stopPropagation(), not e.stopImmediatePropagation(). But yep, you need to manually execute the e.stopImmediatePropagation() function
Version
3.0.11
Reproduction link
https://sfc.vuejs.org/#eyJBcHAudnVlIjoiP...
Steps to reproduce
What is expected?
What is actually happening?
.stop
does not runstopImmediatePropagation
to stop propagation to the follow listenersI expect that this code will run
stopImmediatePropagation()
on click events withshift
modifier.The workaround is to manually run
stopImmediatePropagation
. For example:The text was updated successfully, but these errors were encountered: