Parcourir la source

[Mod 0000] 解决模型地图页点击设备类型后闪烁问题

hongrunxia il y a 1 jour
Parent
commit
3d2d54f5f5
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 4 4
      src/layouts/page/index.vue

+ 4 - 4
src/layouts/page/index.vue

@@ -17,13 +17,13 @@
         <!--      >-->
         <keep-alive v-if="openCache" :include="getCaches">
           <Suspense>
-            <component :is="Component" :key="route.fullPath" />
-            <!-- <component :is="Component" :key="route.path" /> -->
+            <!-- <component :is="Component" :key="route.fullPath" /> -->
+            <component :is="Component" :key="route.path" />
           </Suspense>
         </keep-alive>
         <Suspense v-else>
-          <component :is="Component" :key="route.fullPath" />
-          <!-- <component :is="Component" :key="route.path" /> -->
+          <!-- <component :is="Component" :key="route.fullPath" /> -->
+          <component :is="Component" :key="route.path" />
         </Suspense>
 
         <!--      </transition>-->