This commit is contained in:
2025-07-13 16:45:40 +02:00
parent 550b1b936b
commit b492c0fc38
32 changed files with 6187 additions and 403 deletions

View File

@@ -0,0 +1,20 @@
import { createRouter, createWebHistory } from 'vue-router'
import Home from '@/pages/Home.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'home',
component: Home
},
{
path: '/about',
name: 'about',
component: () => import('@/pages/About.vue')
}
]
});
export default router;