thats-me/frontend/_src/router/routes.js
2026-04-22 12:57:10 +02:00

17 lines
347 B
JavaScript

const routes = [
{
path: '/',
component: () => import('layouts/LifeWaveLayout.vue'),
children: [
{ path: '', component: () => import('pages/LifeWavePage.vue') }
]
},
// Always leave this as last one
{
path: '/:catchAll(.*)*',
component: () => import('pages/ErrorNotFound.vue'),
},
]
export default routes