diff --git a/CHANGELOG.md b/CHANGELOG.md index f39a6803..885efa2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGE LOG +## 4.1.2 + +### Fixes + +- 紧急修复由于路由配置错误,导致无限重定向至首页问题 + ## 4.1.1 ### Feats diff --git a/src/router/modules/demo/doc.ts b/src/router/modules/demo/doc.ts index f4779208..71e44238 100644 --- a/src/router/modules/demo/doc.ts +++ b/src/router/modules/demo/doc.ts @@ -4,7 +4,7 @@ import { LAYOUT } from '@/router/constant/index' import type { AppRouteRecordRaw } from '@/router/type' const doc: AppRouteRecordRaw = { - path: '', + path: '/doc', name: 'RDocLayout', component: LAYOUT, meta: { @@ -14,7 +14,7 @@ const doc: AppRouteRecordRaw = { }, children: [ { - path: '/doc', + path: 'doc-inside', name: 'RDocInside', component: () => import('@/views/doc/index'), meta: { @@ -22,7 +22,7 @@ const doc: AppRouteRecordRaw = { }, }, { - path: '', + path: 'doc-outside', name: 'RDoc', component: LAYOUT, meta: { @@ -31,7 +31,7 @@ const doc: AppRouteRecordRaw = { }, }, { - path: '', + path: 'doc-outside-local', name: 'RDocLocal', component: LAYOUT, meta: { diff --git a/src/views/doc/index.tsx b/src/views/doc/index.tsx index 383bbf8b..23dc6b56 100644 --- a/src/views/doc/index.tsx +++ b/src/views/doc/index.tsx @@ -22,6 +22,7 @@ const RTemplateDoc = defineComponent({ width="100%" height="100%" src="https://ray-template.yunkuangao.com/ray-template-doc/" + lazy > ) },