滚动行为
Posted 啊友的前端历程
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了滚动行为相关的知识,希望对你有一定的参考价值。
new router({
scrollBehavior (to, from, savaPosition) {
if(savePosition) { //历史记录的前进后退记住的之前滚动到的位置
return savePosition
} else {
return {x: 0, y: 0}
}
//history模式下 定位到某个元素失效的解决办法
if(to.hash) {
return {
selector: to.hash
}
} else {
return {x: 0, y: 0}
}
}
})
以上是关于滚动行为的主要内容,如果未能解决你的问题,请参考以下文章