Files
map/frontend/src/router/index.js
Matt 5bef5bc519
All checks were successful
Build Docker containers / Build (push) Successful in 28s
rewrite in vue components
2025-04-15 14:04:29 -04:00

16 lines
311 B
JavaScript

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