vue返回上一页面如果没有上一页面返回首页

 methods: {
        back(){
            if (window.history.length <= 1) {
                this.$router.push({path:'/'})
                return false
            } else {
                this.$router.go(-1)
            }
        }
    },

参考链接:https://segmentfault.com/q/1010000010714863

posted @ 2018-09-05 15:23  蓓蕾心晴  阅读(9383)  评论(1编辑  收藏  举报