项目微调

优化封装的路由菜单
This commit is contained in:
2024-10-10 14:31:34 +08:00
parent b6659f5ae9
commit 0b03088397
3 changed files with 42 additions and 34 deletions

View File

@@ -32,7 +32,9 @@ const routerMode = {
const router = createRouter({
history: routerMode[mode](),
routes: [...staticRouter, ...errorRouter],
// 不区分路由大小写,非严格模式下提供了更宽松的路径匹配
strict: false,
// 页面刷新时,滚动条位置还原
scrollBehavior: () => ({ left: 0, top: 0 })
});