import.ts 445 B

123456789101112131415161718192021
  1. // 最简代码,也就是这些字段必须有
  2. export default {
  3. path: "/import",
  4. meta: {
  5. title: ""
  6. },
  7. children: [
  8. {
  9. path: "/import/index",
  10. name: "importIndex",
  11. meta: {
  12. title: "批量导入",
  13. // title: "",
  14. auths: [],
  15. icon: "ep:home-filled",
  16. showLink: false
  17. },
  18. component: () => import("@/components/import/index.vue")
  19. }
  20. ]
  21. } satisfies RouteConfigsTable;