// 判断是否是第一个路由,如果是,说明是分享进来的,回退返回首页
if (window.sessionStorage.firstUrl === window.location.href) {
this.$router.push({ path: '/' })
return false
} else {
this.$router.go(-1)
}
router.afterEach((to, from) => {
if(!window.sessionStorage.firstUrl){
window.sessionStorage.firstUrl = window.location.href
}
window.scrollTo(0, 0);
})
网友评论