vue判断是否能返回上一页
2022-02-08 本文已影响0人
秀萝卜
// 判断是否是第一个路由,如果是,说明是分享进来的,回退返回首页
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);
})