فهرست منبع

call pending enterCb before move

Evan You 10 سال پیش
والد
کامیت
1bb7830824
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      src/platforms/web/runtime/components/transition-group.js

+ 4 - 0
src/platforms/web/runtime/components/transition-group.js

@@ -98,6 +98,10 @@ export default {
       if (c.elm._moveCb) {
         c.elm._moveCb()
       }
+      /* istanbul ignore if */
+      if (c.elm._enterCb) {
+        c.elm._enterCb()
+      }
       const oldPos = c.data.pos
       const newPos = c.data.pos = c.elm.getBoundingClientRect()
       const dx = oldPos.left - newPos.left