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(() => {