Initial commit

This commit is contained in:
T-A-H-prog
2026-03-04 22:05:06 +01:00
commit 8bbf7a4c2b
42 changed files with 2864 additions and 0 deletions

18
src/router/index.ts Normal file
View File

@@ -0,0 +1,18 @@
import { createRouter, createWebHistory, type RouteRecordRaw } from 'vue-router'
import HomeView from '../views/HomeView.vue'
import ExperienceView from '../views/ExperienceView.vue'
const routes: RouteRecordRaw[] = [
{ path: '/', component: HomeView },
{ path: '/experience',
component: ExperienceView,
props: { modelUrl: '/models/LuebeckRoom_materials-draco.glb', dracoPath: '/draco/' } }
]
const router = createRouter({
history: createWebHistory(),
routes
})
export default router