We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96b833b commit 504d5daCopy full SHA for 504d5da
src/platforms/web/runtime/components/transition-group.js
@@ -116,6 +116,9 @@ export default {
116
addTransitionClass(el, moveClass)
117
s.transform = s.WebkitTransform = s.transitionDuration = ''
118
el.addEventListener(transitionEndEvent, el._moveCb = function cb (e) {
119
+ if (e && e.target !== el) {
120
+ return
121
+ }
122
if (!e || /transform$/.test(e.propertyName)) {
123
el.removeEventListener(transitionEndEvent, cb)
124
el._moveCb = null
0 commit comments