algorithmsLibrary.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. export default [{
  2. path: "/algorithmsLibraryList",
  3. name: "algorithmsLibraryList",
  4. meta: {
  5. tabname: "算法库列表",
  6. menuKind: "algorithmsLibrary"
  7. },
  8. component: () => import("@/views/algorithmsLibrary/algorithmsLibraryList")
  9. },
  10. {
  11. path: "/gitAlgorithms",
  12. name: "gitAlgorithms",
  13. meta: {
  14. tabname: "仓库算法",
  15. menuKind: "algorithmsLibrary"
  16. },
  17. component: () => import("@/views/algorithmsLibrary/gitAlgorithms")
  18. },
  19. {
  20. path: "/exportAlgorithms",
  21. name: "exportAlgorithms",
  22. meta: {
  23. tabname: "导入算法",
  24. menuKind: "algorithmsLibrary"
  25. },
  26. component: () => import("@/views/algorithmsLibrary/exportAlgorithms")
  27. },
  28. {
  29. path: "/algorithmsPlatformList",
  30. name: "algorithmsPlatformList",
  31. meta: {
  32. tabname: "平台算法",
  33. menuKind: "algorithmsLibrary"
  34. },
  35. component: () => import("@/views/algorithmsLibrary/algorithmsPlatformList")
  36. },
  37. ]