12345678910111213141516171819202122232425262728293031323334353637 |
- export default [{
- path: "/algorithmsLibraryList",
- name: "algorithmsLibraryList",
- meta: {
- tabname: "算法库列表",
- menuKind: "algorithmsLibrary"
- },
- component: () => import("@/views/algorithmsLibrary/algorithmsLibraryList")
- },
- {
- path: "/gitAlgorithms",
- name: "gitAlgorithms",
- meta: {
- tabname: "仓库算法",
- menuKind: "algorithmsLibrary"
- },
- component: () => import("@/views/algorithmsLibrary/gitAlgorithms")
- },
- {
- path: "/exportAlgorithms",
- name: "exportAlgorithms",
- meta: {
- tabname: "导入算法",
- menuKind: "algorithmsLibrary"
- },
- component: () => import("@/views/algorithmsLibrary/exportAlgorithms")
- },
- {
- path: "/algorithmsPlatformList",
- name: "algorithmsPlatformList",
- meta: {
- tabname: "平台算法",
- menuKind: "algorithmsLibrary"
- },
- component: () => import("@/views/algorithmsLibrary/algorithmsPlatformList")
- },
- ]
|