vue返回上一頁面如果沒有上一頁面返回首頁

蓓蕾心晴發表於2018-09-05
 methods: {
        back(){
            if (window.history.length <= 1) {
                this.$router.push({path:`/`})
                return false
            } else {
                this.$router.go(-1)
            }
        }
    },

參考連結:https://segmentfault.com/q/1010000010714863

相關文章