mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
34 lines
699 B
JavaScript
34 lines
699 B
JavaScript
const routes = [
|
|
{
|
|
path: '/authenticate',
|
|
},
|
|
{
|
|
path: '/',
|
|
component: () => import('@/pages/Overview.vue'),
|
|
},
|
|
{
|
|
// TODO: Implement a "You are logged out"-Page
|
|
path: '/logout',
|
|
component: () => import('@/components/NotFoundPage.vue'),
|
|
},
|
|
{
|
|
path: '/user',
|
|
component: () => import('@/pages/UserSearch.vue'),
|
|
},
|
|
{
|
|
path: '/creation',
|
|
component: () => import('@/pages/Creation.vue'),
|
|
props: { userSelectedInMassCreation: [] },
|
|
},
|
|
{
|
|
path: '/creation-confirm',
|
|
component: () => import('@/pages/CreationConfirm.vue'),
|
|
},
|
|
{
|
|
path: '*',
|
|
component: () => import('@/components/NotFoundPage.vue'),
|
|
},
|
|
]
|
|
|
|
export default routes
|