vue.js 刷新路由

export default {
  beforeRouteEnter (to, from, next) {
    next(vm => {
      vm.$router.replace(from.path)
    })
  }
}

记录上一个地址跳转回去

引用方法

this.$router.replace('/refresh')

 

你可能感兴趣的:(vue.js 刷新路由)