mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
37 lines
756 B
JavaScript
37 lines
756 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'),
|
|
},
|
|
{
|
|
path: '/creation-confirm',
|
|
component: () => import('@/pages/CreationConfirm.vue'),
|
|
},
|
|
{
|
|
path: '/contribution-links',
|
|
component: () => import('@/pages/ContributionLinks.vue'),
|
|
},
|
|
{
|
|
path: '*',
|
|
component: () => import('@/components/NotFoundPage.vue'),
|
|
},
|
|
]
|
|
|
|
export default routes
|