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();
}
});
上一篇: @PathVariable 注解使用
下一篇: ppp的pap、chap认证配置