canvas included in the main page, still shiting with vue

This commit is contained in:
2025-02-08 20:18:44 +01:00
parent edd4993f3f
commit b30e1196f4
16 changed files with 494 additions and 1 deletions

View File

@ -19,6 +19,13 @@ const router = createRouter({
// which is lazy-loaded when the route is visited.
component: () => import('../views/Home.vue'),
},
// route pour les canvas (made by adnane), in fact the two vue apps are separated for now
{
path: '/canvas',
name: 'canvas',
component: () => import('../views/CanvasView.vue'),
},
],
})