From 343230554db8b918346a9ec0acfaeeb6a1e3c82a Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Fri, 9 Jan 2026 13:59:42 +0800 Subject: [PATCH] perf: Hide non-essential menus --- frontend/src/components/layout/Menu.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/layout/Menu.vue b/frontend/src/components/layout/Menu.vue index 20a6006f..f8b22432 100644 --- a/frontend/src/components/layout/Menu.vue +++ b/frontend/src/components/layout/Menu.vue @@ -60,6 +60,7 @@ const routerList = computed(() => { !route.path.includes('audit') && route.path !== '/login' && route.path !== '/admin-login' && + route.path !== '/chatPreview' && !route.path.includes('/system') && ((route.path.includes('set') && userStore.isSpaceAdmin) || !route.redirect) && route.path !== '/:pathMatch(.*)*' &&