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' };