2nzi's picture
first commit
2964111 verified
raw
history blame contribute delete
426 Bytes
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,
},
{
path: '/manual',
name: 'manual',
component: () => import('../views/ManualView.vue'),
}
],
})
export default router