From 0e93daf2a0762c38beabefa0b58390eaeb142fdb Mon Sep 17 00:00:00 2001 From: AIGC Developer Date: Tue, 21 Oct 2025 17:17:16 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=90=E8=97=8F=E5=AF=BC=E8=88=AA=E6=A0=8F?= =?UTF-8?q?=20-=20=E5=AE=9E=E7=8E=B0=E5=85=A8=E5=B1=8F=E6=B2=89=E6=B5=B8?= =?UTF-8?q?=E5=BC=8F=E4=BD=93=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- demo/frontend/src/App.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/frontend/src/App.vue b/demo/frontend/src/App.vue index ec9bb57..5eb5eb4 100644 --- a/demo/frontend/src/App.vue +++ b/demo/frontend/src/App.vue @@ -26,8 +26,8 @@ const route = useRoute() // 计算是否显示导航栏和页脚 const shouldShowNavBar = computed(() => { - // 登录和注册页面不显示导航栏 - return !['login', 'register'].includes(route.name) + // 所有页面都不显示导航栏 + return false }) const shouldShowFooter = computed(() => {