This commit is contained in:
X1627315083@163.com
2026-05-19 09:57:53 +08:00
20 changed files with 929 additions and 74 deletions

View File

@@ -32,11 +32,29 @@ export const routes: RouteRecordRaw[] = [
name: 'Aida',
component: () => import('./pages/aida/index.vue')
},
{
path: 'events',
{ path: 'events',
name: 'events',
component: () => import('./pages/events/index.vue')
}
},
{
path: 'my-account',
name: 'MyAccount',
component: () => import('./pages/my-account/index.vue'),
children: [
{
path: '',
component: () => import('./pages/my-account/welcome.vue'),
},
{
path: 'orders',
component: () => import('./pages/my-account/orders.vue'),
},
{
path: ':pathMatch(.*)*',
component: () => import('./pages/my-account/welcome.vue'),
},
]
},
]
}
]