美文网首页
vue判断是否能返回上一页

vue判断是否能返回上一页

作者: 秀萝卜 | 来源:发表于2022-02-08 16:28 被阅读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);
})

相关文章

网友评论

      本文标题:vue判断是否能返回上一页

      本文链接:https://www.haomeiwen.com/subject/udgbkrtx.html