| 123456789101112131415161718192021 |
- // 最简代码,也就是这些字段必须有
- import { useUserStoreHook } from "@/store/modules/user";
- export default {
- path: "/childAccount",
- meta: {
- title: "子账号管理"
- },
- children: [
- {
- path: "/childAccount/index",
- name: "ChildAccount",
- component: () => import("@/views/childAccount/index.vue"),
- meta: {
- title: "子账号管理",
- showParent: true,
- roles: ["admin"]
- }
- }
- ]
- } as RouteConfigsTable;
|