码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-09-05 17:46:15      阅读:1113      评论:0      收藏:0      [点我收藏+]

标签:false   参考   target   history   length   this   get   com   his   

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

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

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

标签:false   参考   target   history   length   this   get   com   his   

原文地址:https://www.cnblogs.com/beileixinqing/p/9592313.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!