This commit is contained in:
2026-09-06 04:04:59 +03:00
commit 83a975ba3c
44 changed files with 6558 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import { createRouter, createWebHistory } from 'vue-router'
const routes = [
{
path: '/',
component: () => import('/src/pages/index.vue'),
name: 'Index',
},
{
path: '/about',
component: () => import('/src/pages/about.vue'),
name: 'About',
},
]
export const router = createRouter({
history: createWebHistory(),
routes,
})