فهرست منبع

fix transition appear check for nested components

Evan You 10 سال پیش
والد
کامیت
3e0cda6685
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/platforms/web/runtime/modules/transition.js

+ 1 - 1
src/platforms/web/runtime/modules/transition.js

@@ -46,7 +46,7 @@ export function enter (vnode: VNodeWithData) {
     appearCancelled
   } = data
 
-  const isAppear = !vnode.context.$root._isMounted
+  const isAppear = !vnode.context._isMounted
   if (isAppear && !appear && appear !== '') {
     return
   }