欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue 页面跳转还停留在原来高度

程序员文章站 2024-02-14 13:08:04
...
router.beforeEach((to, from, next) => {
  const tokenStr = window.sessionStorage.getItem('Tk_token');
  if(!tokenStr){
    if(to.path==='/user'|| to.path==='/cartShop'){
      next('/login');
    }else{
      window.scroll(0, 0);  //  <= 这个
      next();
    }  
  }else{
    window.scroll(0, 0);
    next();
  }

});