vue return to the previous page if no previous page Home

methods: {

        back(){

            if (window.history.length <= 1) {

                this.$router.push({path:'/'})

                return false

            } else {

                this.$router.go(-1)

            }

        }

    },

 

Guess you like

Origin www.cnblogs.com/zhanghailing/p/11994874.html