vue跳到新的页面后仍停留在原来的地方

vue跳转到新的页面后应当进入新页面的头部 (看到的为新页面的最上方)
在main.js中加入(所有页面都进入时返回顶部)

router.afterEach((to, from, next) => {

  window,
  scrollTo(0, 0)

})

单个页面进入时返回首页

this.$router.afterEach((to, from, next) => {

  window,
  scrollTo(0, 0)

})

你可能感兴趣的:(vue跳到新的页面后仍停留在原来的地方)