You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
416 B
JavaScript

import { createRouter, createWebHistory } from 'vue-router'
import LoginView from '../view/login/index.vue'
import MapView from '../view/map/index.vue'
const router = createRouter({
history: createWebHistory(),
routes: [
{
path: '/login',
name: 'login',
component: LoginView,
},
{
path: '/',
name: 'map',
component: MapView,
},
],
})
export default router