Vue H5 路由返回的集中实现

this.$router.push()

this.$router.replace()





//this.$router.push会在window.histroy中保留浏览器的历史记录,而this.$router.replace不会在history中保留。

this.$router.back()

this.$router.go(-1)

//成功返回上一页,也会清除掉上一条history记录

你可能感兴趣的:(vue.js,前端,html5)