huangxw 6 달 전
부모
커밋
02fc208a14
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 3
      src/layout/components/AppMain.vue

+ 1 - 3
src/layout/components/AppMain.vue

@@ -4,9 +4,7 @@
             <keep-alive v-if="!route.meta.noCache" :include="[]">
                 <component :is="Component" v-if="!route.meta.link" :key="route.path" />
             </keep-alive>
-            <transition v-if="route.meta.noCache" :enter-active-class="animante" mode="out-in">
-                <component :is="Component" v-if="!route.meta.link && route.meta.noCache" :key="route.path" />
-            </transition>
+            <component :is="Component" v-if="!route.meta.link && route.meta.noCache" :key="route.path" />
         </router-view>
         <iframe-toggle />
     </section>