You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
678 B

  1. import Layout from "/@/layout/index.vue";
  2. const remainingRouter = [
  3. {
  4. path: "/login",
  5. name: "login",
  6. component: () => import("/@/views/login.vue"),
  7. meta: {
  8. title: "message.hslogin",
  9. showLink: false,
  10. i18n: true,
  11. rank: 101
  12. }
  13. },
  14. {
  15. path: "/redirect",
  16. name: "redirect",
  17. component: Layout,
  18. meta: {
  19. icon: "HomeFilled",
  20. title: "message.hshome",
  21. i18n: true,
  22. showLink: false,
  23. rank: 104
  24. },
  25. children: [
  26. {
  27. path: "/redirect/:path(.*)",
  28. name: "redirect",
  29. component: () => import("/@/views/redirect.vue")
  30. }
  31. ]
  32. }
  33. ];
  34. export default remainingRouter;