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.

28 lines
535 B

  1. import { $t } from "/@/plugins/i18n";
  2. import Layout from "/@/layout/index.vue";
  3. const externalLink = {
  4. path: "/external",
  5. name: "external",
  6. component: Layout,
  7. meta: {
  8. icon: "Link",
  9. title: $t("menus.externalLink"),
  10. showLink: true,
  11. i18n: true,
  12. rank: 190
  13. },
  14. children: [
  15. {
  16. path: "https://github.com/xiaoxian521/vue-pure-admin",
  17. meta: {
  18. title: $t("menus.externalLink"),
  19. showLink: true,
  20. i18n: true,
  21. rank: 191
  22. }
  23. }
  24. ]
  25. };
  26. export default externalLink;