diff --git a/.DS_Store b/.DS_Store index 02076214..96aa0e81 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/src/.DS_Store b/src/.DS_Store index 59fb202f..f4193e81 100644 Binary files a/src/.DS_Store and b/src/.DS_Store differ diff --git a/src/components/.DS_Store b/src/components/.DS_Store index db841750..8076dd5c 100644 Binary files a/src/components/.DS_Store and b/src/components/.DS_Store differ diff --git a/src/router/index.ts b/src/router/index.ts index 80f76ef4..2cd674d2 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -2,8 +2,6 @@ import type { App } from 'vue' import { createRouter, createWebHashHistory } from 'vue-router' import { constantRoutes } from './routes' -import type { Router } from 'vue-router' - export const router = createRouter({ history: createWebHashHistory(), routes: constantRoutes, diff --git a/src/router/modules/demo.ts b/src/router/modules/demo.ts new file mode 100644 index 00000000..6034e4c1 --- /dev/null +++ b/src/router/modules/demo.ts @@ -0,0 +1,5 @@ +export default { + path: '', + name: 'app', + component: () => import('@/App'), +} diff --git a/src/router/modules/index.ts b/src/router/modules/index.ts index 250b65da..ceca0e6d 100644 --- a/src/router/modules/index.ts +++ b/src/router/modules/index.ts @@ -1,20 +1,5 @@ -import type { RouteRecordRaw } from 'vue-router' +import demo from './demo' -const route = import.meta.glob('./*.ts', { eager: true }) as IUnknownObjectKey - -const routes = Object.keys(route).reduce((modules, modulePath) => { - const _default = route[modulePath] - - modules.push(_default as unknown as RouteRecordRaw) - - return modules -}, [] as RouteRecordRaw[]) +const routes = [demo] export default routes - -/** - * - * 这个方法可以自动载入路由表, 不需要手动进行导入 - * 单个路由表格式可以参考 `test.ts` - * 但是如果需要控制路由顺序, 则需要自行处理 - */ diff --git a/src/router/modules/test.ts b/src/router/modules/test.ts deleted file mode 100644 index 2424ce5f..00000000 --- a/src/router/modules/test.ts +++ /dev/null @@ -1,6 +0,0 @@ -export default { - path: 'app', - name: 'app', - component: () => import('@/App'), - children: [{}], // 如果有子路由, 直接接着写就好 -} diff --git a/src/router/routes.ts b/src/router/routes.ts index f88c0513..db76cce7 100644 --- a/src/router/routes.ts +++ b/src/router/routes.ts @@ -1,3 +1,3 @@ import autoLayoutChildrenRoutes from './modules/index' -export const constantRoutes = [] +export const constantRoutes = autoLayoutChildrenRoutes