ascgis map

This commit is contained in:
Warunee Tamkoo 2023-12-08 13:15:13 +07:00
parent 357a49e706
commit f81f138c63
4 changed files with 818 additions and 1 deletions

View file

@ -1,5 +1,6 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '@/views/HomeView.vue'
import MapView from '@/views/MapView.vue'
import keycloak from '@/plugins/keycloak'
@ -14,6 +15,14 @@ const router = createRouter({
Auth: true,
},
},
{
path: '/map',
name: 'map',
component: MapView,
meta: {
Auth: true,
},
},
{
path: '/about',
name: 'about',