mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: router中 createWebHistory 的 id 从 h5 改为 history
This commit is contained in:
parent
4870e093ac
commit
cf5e8a7454
@ -20,10 +20,12 @@ export default {
|
|||||||
|
|
||||||
### mode
|
### 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)
|
- **hash**,对应 [createWebHashHistory](https://next.router.vuejs.org/zh/api/#createWebHashHistory)
|
||||||
- **memory**,对应 [createMemoryHistory](https://next.router.vuejs.org/zh/api/#createWebHashHistory)
|
- **memory**,对应 [createMemoryHistory](https://next.router.vuejs.org/zh/api/#createWebHashHistory)
|
||||||
|
|
||||||
|
默认是`hash`模式。
|
||||||
|
|
||||||
## 约定式路由
|
## 约定式路由
|
||||||
约定式路由也叫文件路由,就是不需要手写配置,文件系统即路由,通过目录和文件及其命名分析出路由配置。
|
约定式路由也叫文件路由,就是不需要手写配置,文件系统即路由,通过目录和文件及其命名分析出路由配置。
|
||||||
|
|
||||||
|
@ -20,10 +20,12 @@ export default {
|
|||||||
|
|
||||||
### mode
|
### 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)
|
- **hash**,对应 [createWebHashHistory](https://next.router.vuejs.org/zh/api/#createWebHashHistory)
|
||||||
- **memory**,对应 [createMemoryHistory](https://next.router.vuejs.org/zh/api/#createWebHashHistory)
|
- **memory**,对应 [createMemoryHistory](https://next.router.vuejs.org/zh/api/#createWebHashHistory)
|
||||||
|
|
||||||
|
默认是`hash`模式。
|
||||||
|
|
||||||
## 约定式路由
|
## 约定式路由
|
||||||
约定式路由也叫文件路由,就是不需要手写配置,文件系统即路由,通过目录和文件及其命名分析出路由配置。
|
约定式路由也叫文件路由,就是不需要手写配置,文件系统即路由,通过目录和文件及其命名分析出路由配置。
|
||||||
|
|
||||||
|
@ -265,7 +265,7 @@ export default function (api) {
|
|||||||
const absRuntimeFilePath = join(namespace, 'runtime.js');
|
const absRuntimeFilePath = join(namespace, 'runtime.js');
|
||||||
|
|
||||||
const historyType = {
|
const historyType = {
|
||||||
h5: 'createWebHistory',
|
history: 'createWebHistory',
|
||||||
hash: 'createWebHashHistory',
|
hash: 'createWebHashHistory',
|
||||||
memory: 'createMemoryHistory'
|
memory: 'createMemoryHistory'
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user