Initial commit
This commit is contained in:
19
src/routes.ts
Normal file
19
src/routes.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
const routes = [
|
||||
{
|
||||
name: 'index',
|
||||
path: '/',
|
||||
redirect: { name: 'calendar' }
|
||||
},
|
||||
{
|
||||
name: 'calendar',
|
||||
path: '/calendar',
|
||||
component: () => import('@/pages/ChronoPage.vue'),
|
||||
},
|
||||
{
|
||||
name: 'tasks',
|
||||
path: '/tasks',
|
||||
component: () => import('@/pages/ChronoPage.vue'),
|
||||
},
|
||||
]
|
||||
|
||||
export default routes
|
||||
Reference in New Issue
Block a user