Vue路由跳转页面后-新页面没有位于顶部-案例
页面通过路由调转后,新页面停留的位置与上一级页面一致
解决
配置路由
const router = new VueRouter({
scrollBehavior: () => ({ y: 0 }),
routes: [...]
})
// 可能是使用组件缓存时 再次切换到此组件 路由不触发mounted钩子函数
原生js操作
toYpWebsite () {
// this.$router.push('/ypWebsite')
document.body.scrollTop = document.documentElement.scrollTop = 0;
}
本文来自博客园,作者:JackieDYH,转载请注明原文链接:https://www.cnblogs.com/JackieDYH/p/17634189.html