41 lines
965 B
JavaScript
41 lines
965 B
JavaScript
import { createRouter, createWebHistory } from 'vue-router';
|
|
import HomeView from '../views/HomeView.vue';
|
|
import QuickAreaControlView from '../views/QuickAreaControlView.vue'
|
|
|
|
const router = createRouter({
|
|
history: createWebHistory(import.meta.env.BASE_URL),
|
|
routes: [
|
|
{
|
|
path: '/',
|
|
name: 'home',
|
|
component: HomeView
|
|
},
|
|
{
|
|
path: '/about',
|
|
name: 'about',
|
|
// route level code-splitting
|
|
// this generates a separate chunk (About.[hash].js) for this route
|
|
// which is lazy-loaded when the route is visited.
|
|
component: () => import('../views/AboutView.vue')
|
|
},
|
|
{
|
|
path: '/imprint',
|
|
name: 'imprint',
|
|
component: () => import('../views/ImprintView.vue')
|
|
},
|
|
{
|
|
path: '/api',
|
|
name: 'api',
|
|
component: HomeView
|
|
},
|
|
{
|
|
path: '/quickControl',
|
|
name: 'quickControl',
|
|
component: QuickAreaControlView
|
|
},
|
|
|
|
]
|
|
});
|
|
|
|
export default router
|