| 123456789101112131415161718 |
- import type { MenuRouteMap } from "@/core/config/MainMenuConfig"
- //mobile 移动督查
- export const menus: Array<MenuRouteMap> = [
- {
- path: "/mobile",
- icon: "fas fa-mobile-alt",
- },
- {
- path: "/mobile/supervision",
- component: () => import("@/views/mobile/supervision.vue"),
- },
- {
- path: "/mobile/inspector",
- component: () => import("@/views/mobile/inspector.vue"),
- },
- ]
- export default menus
|