childAccount.ts 482 B

123456789101112131415161718192021
  1. // 最简代码,也就是这些字段必须有
  2. import { useUserStoreHook } from "@/store/modules/user";
  3. export default {
  4. path: "/childAccount",
  5. meta: {
  6. title: "子账号管理"
  7. },
  8. children: [
  9. {
  10. path: "/childAccount/index",
  11. name: "ChildAccount",
  12. component: () => import("@/views/childAccount/index.vue"),
  13. meta: {
  14. title: "子账号管理",
  15. showParent: true,
  16. roles: ["admin"]
  17. }
  18. }
  19. ]
  20. } as RouteConfigsTable;