tabs.ts 535 B

1234567891011121314151617181920212223242526272829
  1. import Layout from "/@/layout/index.vue";
  2. const tabsRouter = {
  3. path: "/tabs",
  4. name: "reTabs",
  5. component: Layout,
  6. redirect: "/tags/index",
  7. meta: {
  8. icon: "IF-team-icontabs",
  9. title: "message.hstabs",
  10. i18n: true,
  11. showLink: true,
  12. rank: 8
  13. },
  14. children: [
  15. {
  16. path: "/tabs/index",
  17. name: "reTabs",
  18. component: () => import("/@/views/tabs/index.vue"),
  19. meta: {
  20. title: "message.hstabs",
  21. showLink: true,
  22. i18n: true
  23. }
  24. }
  25. ]
  26. };
  27. export default tabsRouter;