Răsfoiți Sursa

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

hongrunxia 1 zi în urmă
părinte
comite
3d2d54f5f5
1 a modificat fișierele cu 4 adăugiri și 4 ștergeri
  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>-->