This commit is contained in:
2026-07-03 23:54:14 +02:00
parent ccfea3d3cf
commit dc738a9d29
3 changed files with 106 additions and 24 deletions
+2 -2
View File
@@ -47,13 +47,13 @@ const router = createRouter({
component: () => import('@/pages/index.vue'),
},
{
path: 'server/:id(default|[0-9a-fA-F-]{36})',
path: 'server/:serverId(default|[0-9a-fA-F-]{36})',
name: 'server-dashboard',
component: () => import('@/pages/server/index.vue'),
props: true,
children: [
{
path: 'channel/:id(default|[0-9a-fA-F-]{36})',
path: 'channel/:channelId(default|[0-9a-fA-F-]{36})',
name: 'server-channel',
component: () => import('@/pages/server/channel/index.vue'),
props: true,