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.

34 lines
642 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. rank: 101
  11. }
  12. },
  13. {
  14. path: "/redirect",
  15. name: "redirect",
  16. component: Layout,
  17. meta: {
  18. icon: "HomeFilled",
  19. title: "message.hshome",
  20. showLink: false,
  21. rank: 104
  22. },
  23. children: [
  24. {
  25. path: "/redirect/:path(.*)",
  26. name: "redirect",
  27. component: () => import("/@/views/redirect.vue")
  28. }
  29. ]
  30. }
  31. ];
  32. export default remainingRouter;