123456789101112131415161718192021 |
- // 最简代码,也就是这些字段必须有
- export default {
- path: "/import",
- meta: {
- title: ""
- },
- children: [
- {
- path: "/import/index",
- name: "importIndex",
- meta: {
- title: "批量导入",
- // title: "",
- auths: [],
- icon: "ep:home-filled",
- showLink: false
- },
- component: () => import("@/components/import/index.vue")
- }
- ]
- } satisfies RouteConfigsTable;
|