vue分享到微信中的web页返回到指定页

vue中

首页 Home.vue 分享页 share.vue

在share.vue中

mounted () {
  if(window.history && window.history.pushState) {
     history.replaceState(null, null, '/Home')
     history.pushState(null, null, '/share')
     this.$router.push('/share')
  } 
}

你可能感兴趣的:(vue)