_mobile.ts 422 B

123456789101112131415161718
  1. import type { MenuRouteMap } from "@/core/config/MainMenuConfig"
  2. //mobile 移动督查
  3. export const menus: Array<MenuRouteMap> = [
  4. {
  5. path: "/mobile",
  6. icon: "fas fa-mobile-alt",
  7. },
  8. {
  9. path: "/mobile/supervision",
  10. component: () => import("@/views/mobile/supervision.vue"),
  11. },
  12. {
  13. path: "/mobile/inspector",
  14. component: () => import("@/views/mobile/inspector.vue"),
  15. },
  16. ]
  17. export default menus