fix: 路由切换时自动滚动到页面顶部
This commit is contained in:
@@ -13,5 +13,9 @@ const routes = [
|
|||||||
|
|
||||||
export default createRouter({
|
export default createRouter({
|
||||||
history: createWebHistory(),
|
history: createWebHistory(),
|
||||||
routes
|
routes,
|
||||||
|
scrollBehavior() {
|
||||||
|
// 每次路由切换滚动到顶部
|
||||||
|
return { top: 0 }
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user