mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
28 lines
509 B
JavaScript
28 lines
509 B
JavaScript
const routes = [
|
|
{
|
|
path: '/authenticate',
|
|
},
|
|
{
|
|
path: '/',
|
|
component: () => import('@/pages/Overview.vue'),
|
|
},
|
|
{
|
|
path: '/user',
|
|
component: () => import('@/pages/UserSearch.vue'),
|
|
},
|
|
{
|
|
path: '/creation',
|
|
component: () => import('@/pages/Creation.vue'),
|
|
},
|
|
{
|
|
path: '/creation-confirm',
|
|
component: () => import('@/pages/CreationConfirm.vue'),
|
|
},
|
|
{
|
|
path: '*',
|
|
component: () => import('@/components/NotFoundPage.vue'),
|
|
},
|
|
]
|
|
|
|
export default routes
|