vue跳到新的页面后仍停留在原来的地方
2019-10-29 本文已影响0人
执念_6afc
vue跳转到新的页面后应当进入新页面的头部 (看到的为新页面的最上方)
在main.js中加入(所有页面都进入时返回顶部)
router.afterEach((to, from, next) => {
window,
scrollTo(0, 0)
})
单个页面进入时返回首页
this.$router.afterEach((to, from, next) => {
window,
scrollTo(0, 0)
})