rewrite in vue components
All checks were successful
Build Docker containers / Build (push) Successful in 28s

This commit is contained in:
2025-04-15 14:04:29 -04:00
parent 93af3292ab
commit 5bef5bc519
88 changed files with 7698 additions and 0 deletions

View File

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