add hemo,help

This commit is contained in:
2026-03-21 10:26:44 +08:00
parent 93713e3e3c
commit d5388f3f08
8 changed files with 1726 additions and 2 deletions

View File

@@ -13,7 +13,27 @@ const router = createRouter({
routes: [
{
path: '/',
redirect: 'login',
name: 'root',
component: () => import('@/layout/standalone-layout.vue'),
redirect: '/home',
children: [
{
path: '/home',
name: 'Home',
component: () => import('@/views/home/index.vue'),
meta: {
requiresAuth: false,
},
},
{
path: '/help',
name: 'Help',
component: () => import('@/views/help/index.vue'),
meta: {
requiresAuth: false,
},
},
],
},
{
path: '/login',