update use router

This commit is contained in:
chuan_wuhao 2022-11-17 09:52:57 +08:00
parent e3a190e94c
commit 49e8d3fbc5
8 changed files with 8 additions and 26 deletions

BIN
.DS_Store vendored

Binary file not shown.

BIN
src/.DS_Store vendored

Binary file not shown.

Binary file not shown.

View File

@ -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,

View File

@ -0,0 +1,5 @@
export default {
path: '',
name: 'app',
component: () => import('@/App'),
}

View File

@ -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`
* ,
*/

View File

@ -1,6 +0,0 @@
export default {
path: 'app',
name: 'app',
component: () => import('@/App'),
children: [{}], // 如果有子路由, 直接接着写就好
}

View File

@ -1,3 +1,3 @@
import autoLayoutChildrenRoutes from './modules/index'
export const constantRoutes = []
export const constantRoutes = autoLayoutChildrenRoutes