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