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