about.ts 532 B

123456789101112131415161718192021222324252627
  1. import { $t } from "/@/plugins/i18n";
  2. const Layout = () => import("/@/layout/index.vue");
  3. const aboutRouter = {
  4. path: "/about",
  5. component: Layout,
  6. redirect: "/about/index",
  7. meta: {
  8. icon: "question-line",
  9. title: $t("menus.hsAbout"),
  10. i18n: true,
  11. rank: 14
  12. },
  13. children: [
  14. {
  15. path: "/about/index",
  16. name: "reAbout",
  17. component: () => import("/@/views/about/index.vue"),
  18. meta: {
  19. title: $t("menus.hsAbout"),
  20. i18n: true
  21. }
  22. }
  23. ]
  24. };
  25. export default aboutRouter;