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.

26 lines
454 B

  1. import Layout from "/@/layout/index.vue";
  2. const homeRouter = {
  3. path: "/",
  4. name: "home",
  5. component: Layout,
  6. redirect: "/welcome",
  7. meta: {
  8. icon: "el-icon-s-home",
  9. showLink: true,
  10. rank: 0
  11. },
  12. children: [
  13. {
  14. path: "/welcome",
  15. name: "welcome",
  16. component: () => import("/@/views/welcome.vue"),
  17. meta: {
  18. title: "message.hshome",
  19. showLink: true
  20. }
  21. }
  22. ]
  23. };
  24. export default homeRouter;