|
@@ -8,7 +8,7 @@ Vue.use(VueRouter)
|
|
const dashboard = () => import('./views/dashboard.vue');
|
|
const dashboard = () => import('./views/dashboard.vue');
|
|
const projectManagement = () => import('./views/projectManagement.vue');
|
|
const projectManagement = () => import('./views/projectManagement.vue');
|
|
const GIS = () => import('./views/GISMap.vue');
|
|
const GIS = () => import('./views/GISMap.vue');
|
|
-const userRights = () => import('./views/userRights.vue');
|
|
|
|
|
|
+const userManagement = () => import('./views/userManagement.vue');
|
|
|
|
|
|
const routes = [
|
|
const routes = [
|
|
{
|
|
{
|
|
@@ -31,9 +31,9 @@ const routes = [
|
|
component: GIS
|
|
component: GIS
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- path: '/userRights',
|
|
|
|
- name: 'userRights',
|
|
|
|
- component: userRights
|
|
|
|
|
|
+ path: '/userManagement',
|
|
|
|
+ name: 'userManagement',
|
|
|
|
+ component: userManagement
|
|
},
|
|
},
|
|
]
|
|
]
|
|
|
|
|