algorithmsLibrary.js 1.2 KB

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