소스 검색

fix: 修复在混合模式下刷新页签后,左侧菜单会消失闪一下的问题 (#543)

Co-authored-by: lixiangpeng <lixiangpeng@tbea.com>
HappyBoy 2 년 전
부모
커밋
fd9c19dd00
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/layout/components/sidebar/vertical.vue

+ 1 - 0
src/layout/components/sidebar/vertical.vue

@@ -60,6 +60,7 @@ onBeforeMount(() => {
 watch(
   () => [route.path, usePermissionStoreHook().wholeMenus],
   () => {
+    if (route.path.includes("/redirect")) return;
     getSubMenuData(route.path);
     menuSelect(route.path, routers);
   }