Initial commit

This commit is contained in:
root
2025-12-21 09:59:39 -05:00
committed by Sebastian Krupinski
commit cc4e467cef
36 changed files with 7133 additions and 0 deletions

19
src/routes.ts Normal file
View 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