大屏页面初始化

This commit is contained in:
2026-03-06 15:43:05 +08:00
parent 4c62e80407
commit b9d209f7ef
12 changed files with 395 additions and 29 deletions

View File

@@ -74,13 +74,19 @@ const routes = [
name: 'Dashboard',
component: Dashboard
},
...generateRoutes()
...generateRoutes(),
{
path: '/:pathMatch(.*)*',
name: 'Layout404',
component: Page404
}
]
},
{
path: '/:pathMatch(.*)*',
name: 'Page404',
component: Page404
component: () => import('@/views/error/404.vue'),
meta: { requiresAuth: true }
}
]