|
@@ -4,7 +4,7 @@ import Notice from "../notice/index.vue";
|
|
|
import avatars from "/@/assets/avatars.jpg";
|
|
|
import { useNav } from "/@/layout/hooks/useNav";
|
|
|
import { transformI18n } from "/@/plugins/i18n";
|
|
|
-import { ref, toRaw, watch, onMounted } from "vue";
|
|
|
+import { ref, toRaw, watch, onMounted, nextTick } from "vue";
|
|
|
import { useRenderIcon } from "/@/components/ReIcon/src/hooks";
|
|
|
import { getParentPaths, findRouteByPath } from "/@/router/utils";
|
|
|
import { useTranslationLang } from "../../hooks/useTranslationLang";
|
|
@@ -43,6 +43,10 @@ onMounted(() => {
|
|
|
getDefaultActive(route.path);
|
|
|
});
|
|
|
|
|
|
+nextTick(() => {
|
|
|
+ menuRef.value?.handleResize();
|
|
|
+});
|
|
|
+
|
|
|
watch(
|
|
|
() => route.path,
|
|
|
() => {
|