12345678910111213141516 |
- import RouterViewCom from "@/layout/router-view.vue";
- // 不需要菜单管理配置的路由
- const staticRouter = [
- // {
- // path: '/login',
- // name: 'fde2b927-2116-43f6-ba5e-94be4abacf39',
- // component: () => import('@/views/global/login.vue')
- // },
- {
- path: '/auth',
- name: 'auth',
- component: () => import('@/views/gis/auth.vue')
- },
- ]
- export default staticRouter
|