mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
update use router
This commit is contained in:
parent
e3a190e94c
commit
49e8d3fbc5
BIN
src/.DS_Store
vendored
BIN
src/.DS_Store
vendored
Binary file not shown.
BIN
src/components/.DS_Store
vendored
BIN
src/components/.DS_Store
vendored
Binary file not shown.
@ -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,
|
||||
|
5
src/router/modules/demo.ts
Normal file
5
src/router/modules/demo.ts
Normal file
@ -0,0 +1,5 @@
|
||||
export default {
|
||||
path: '',
|
||||
name: 'app',
|
||||
component: () => import('@/App'),
|
||||
}
|
@ -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`
|
||||
* 但是如果需要控制路由顺序, 则需要自行处理
|
||||
*/
|
||||
|
@ -1,6 +0,0 @@
|
||||
export default {
|
||||
path: 'app',
|
||||
name: 'app',
|
||||
component: () => import('@/App'),
|
||||
children: [{}], // 如果有子路由, 直接接着写就好
|
||||
}
|
@ -1,3 +1,3 @@
|
||||
import autoLayoutChildrenRoutes from './modules/index'
|
||||
|
||||
export const constantRoutes = []
|
||||
export const constantRoutes = autoLayoutChildrenRoutes
|
||||
|
Loading…
x
Reference in New Issue
Block a user