static.ts 395 B

12345678910111213141516
  1. import RouterViewCom from "@/layout/router-view.vue";
  2. // 不需要菜单管理配置的路由
  3. const staticRouter = [
  4. // {
  5. // path: '/login',
  6. // name: 'fde2b927-2116-43f6-ba5e-94be4abacf39',
  7. // component: () => import('@/views/global/login.vue')
  8. // },
  9. {
  10. path: '/auth',
  11. name: 'auth',
  12. component: () => import('@/views/gis/auth.vue')
  13. },
  14. ]
  15. export default staticRouter