//使用路由进行控制
scrollBehavior (to, from, savedPosition) {
if (savedPosition) {
return savedPosition
} else {
return { x: 0, y: 0 }
}
}
//使用window进行控制
mounted () {
window.scroll(0, 0)
}
//亲测使用下面方法在谷歌的手机模拟器有用,微信真机无用
mounted () {
document.documentElement.scrollTop = 0
}