Files
fst-frontend/src/router/index.js
2022-12-30 00:45:54 +01:00

27 lines
614 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
},
{
path: '/about',
name: 'about',
// this page is lazy-loaded when the route is visited.
component: () => import('../views/AboutView.vue')
},
{
path: '/:pathMatch(.*)*',
name: 'notfound',
component: () => import('../components/PageNotFound.vue')
}
]
})
export default router