zl程序教程

您现在的位置是:首页 >  前端

当前栏目

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

Vue 没有 返回 如果 首页 一页
2023-09-14 09:07:44 时间
 methods: {
        back(){
            if (window.history.length <= 1) {
                this.$router.push({path:'/'})
                return false
            } else {
                this.$router.go(-1)
            }
        }
    },

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