fix(config): 修复AppHeader路由白名单配置

This commit is contained in:
scout 2025-01-15 13:05:07 +08:00
parent c93a7fcb93
commit 4e03cb3f6d
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<script setup>
import { useAppFooterRouteNames as routeWhiteList } from '~/config'
import { useAppHeaderRouteNames as routeWhiteList } from '~/config'
const route = useRoute()
const router = useRouter()

View File

@ -1,2 +1,3 @@
export const useAppFooterRouteNames= ['home', 'profile']
export const useAppHeaderRouteNames= ['home', 'profile','login']