add latest

This commit is contained in:
2022-09-28 02:02:20 +01:00
parent efc4af9fa7
commit 4fad26ba99
23 changed files with 358 additions and 195 deletions

View File

@@ -4,15 +4,21 @@ const routes: RouteRecordRaw[] = [
{
path: '/',
component: () => import('layouts/MainLayout.vue'),
children: [{ path: '', component: () => import('pages/IndexPage.vue') }],
children: [
{ path: '', component: () => import('pages/AnnoBase.vue') },
{
path: '/expansions',
component: () => import('pages/AnnoExpansions.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;