From cf5e8a74544de35972fce1f1a6d53242a5b80bac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=87=E7=BA=AF?= Date: Tue, 23 Mar 2021 15:53:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=20router=E4=B8=AD=20createWebHistory=20?= =?UTF-8?q?=E7=9A=84=20id=20=E4=BB=8E=20h5=20=E6=94=B9=E4=B8=BA=20history?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/guide/route.md | 4 +++- docs/zh/guide/route.md | 4 +++- packages/fes-preset-built-in/src/plugins/misc/route/index.js | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/guide/route.md b/docs/guide/route.md index 642929d8..0200633b 100644 --- a/docs/guide/route.md +++ b/docs/guide/route.md @@ -20,10 +20,12 @@ export default { ### mode 创建历史记录的类型: -- **h5**,对应 [createWebHistory](https://next.router.vuejs.org/zh/api/#createwebhistory) +- **history**,对应 [createWebHistory](https://next.router.vuejs.org/zh/api/#createwebhistory) - **hash**,对应 [createWebHashHistory](https://next.router.vuejs.org/zh/api/#createWebHashHistory) - **memory**,对应 [createMemoryHistory](https://next.router.vuejs.org/zh/api/#createWebHashHistory) +默认是`hash`模式。 + ## 约定式路由 约定式路由也叫文件路由,就是不需要手写配置,文件系统即路由,通过目录和文件及其命名分析出路由配置。 diff --git a/docs/zh/guide/route.md b/docs/zh/guide/route.md index 642929d8..0200633b 100644 --- a/docs/zh/guide/route.md +++ b/docs/zh/guide/route.md @@ -20,10 +20,12 @@ export default { ### mode 创建历史记录的类型: -- **h5**,对应 [createWebHistory](https://next.router.vuejs.org/zh/api/#createwebhistory) +- **history**,对应 [createWebHistory](https://next.router.vuejs.org/zh/api/#createwebhistory) - **hash**,对应 [createWebHashHistory](https://next.router.vuejs.org/zh/api/#createWebHashHistory) - **memory**,对应 [createMemoryHistory](https://next.router.vuejs.org/zh/api/#createWebHashHistory) +默认是`hash`模式。 + ## 约定式路由 约定式路由也叫文件路由,就是不需要手写配置,文件系统即路由,通过目录和文件及其命名分析出路由配置。 diff --git a/packages/fes-preset-built-in/src/plugins/misc/route/index.js b/packages/fes-preset-built-in/src/plugins/misc/route/index.js index 1d572c6b..c51e709e 100644 --- a/packages/fes-preset-built-in/src/plugins/misc/route/index.js +++ b/packages/fes-preset-built-in/src/plugins/misc/route/index.js @@ -265,7 +265,7 @@ export default function (api) { const absRuntimeFilePath = join(namespace, 'runtime.js'); const historyType = { - h5: 'createWebHistory', + history: 'createWebHistory', hash: 'createWebHashHistory', memory: 'createMemoryHistory' };