huangxw hace 6 meses
padre
commit
02fc208a14
Se han modificado 1 ficheros con 1 adiciones y 3 borrados
  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>