fix : merged the main with the front branch and fixed all possible issues

This commit is contained in:
Mohamed Maoulainine Maoulainine
2025-03-21 01:16:49 +01:00
20 changed files with 1802 additions and 281 deletions

View File

@ -1,4 +1,4 @@
import { createRouter, createWebHistory } from 'vue-router'
import { createRouter, createWebHistory } from "vue-router";
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@ -9,7 +9,7 @@ const router = createRouter({
// route level code-splitting
// this generates a separate chunk (About.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import('../views/test.vue'),
component: () => import('../views/testComponent.vue'),
},
{
@ -27,4 +27,4 @@ const router = createRouter({
],
})
export default router
export default router;