vue中vue router.push(),router.replace(),router.go()区别

实际经历,在公司vue项目中,一个商品页面可以从两个入口进入,分别是首页的一个和底部tabbar 一个快速入口,

如果你使用 router.replace() 跳转路由,不会留下历史记录 当返回前一个页面时this.$router.go(-1) 会无效

router.push() 跳转路由,会留下历史记录 当返回前一个页面时this.$router.go(-1) 可以实现

你可能感兴趣的:(vue中vue router.push(),router.replace(),router.go()区别)