first commit

This commit is contained in:
2025-11-14 15:25:23 +08:00
commit 911a99bd3d
39 changed files with 6658 additions and 0 deletions

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

@@ -0,0 +1,20 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/home.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'home',
component: HomeView,
},
{
path: '/3d-point',
name: '3d-point',
component: () => import('../views/3d-point.vue'),
},
],
})
export default router