wip: update for season 4

This commit is contained in:
2023-12-08 02:02:15 +00:00
parent 7872a2ffec
commit 02d8dc7171
26 changed files with 8362 additions and 6161 deletions

View File

@@ -6,19 +6,20 @@ const routes: RouteRecordRaw[] = [
component: () => import('layouts/MainLayout.vue'),
children: [
{ path: '', component: () => import('pages/AnnoBase.vue') },
{
path: '/expansions',
component: () => import('pages/AnnoExpansions.vue'),
},
],
{ path: '/misc', component: () => import('pages/AnnoMisc.vue') },
{ path: '/season1', component: () => import('pages/AnnoSeason1.vue') },
{ path: '/season2', component: () => import('pages/AnnoSeason2.vue') },
{ path: '/season3', component: () => import('pages/AnnoSeason3.vue') },
{ path: '/season4', component: () => import('pages/AnnoSeason4.vue') }
]
},
// Always leave this as last one,
// but you can also remove it
{
path: '/:catchAll(.*)*',
component: () => import('pages/ErrorNotFound.vue'),
},
component: () => import('pages/ErrorNotFound.vue')
}
];
export default routes;