algorithmsLibrary.js 691 B

12345678910111213141516171819202122232425
  1. export default [{
  2. path: "/algorithmsLibraryList",
  3. name: "algorithmsLibraryList",
  4. meta: {
  5. tabname: "算法库列表"
  6. },
  7. component: () => import("@/views/algorithmsLibrary/algorithmsLibraryList")
  8. },
  9. {
  10. path: "/gitAlgorithms",
  11. name: "gitAlgorithms",
  12. meta: {
  13. tabname: "仓库算法"
  14. },
  15. component: () => import("@/views/algorithmsLibrary/gitAlgorithms")
  16. },
  17. {
  18. path: "/exportAlgorithms",
  19. name: "exportAlgorithms",
  20. meta: {
  21. tabname: "导入算法"
  22. },
  23. component: () => import("@/views/algorithmsLibrary/exportAlgorithms")
  24. },
  25. ]