首页 > 其他分享 >vue 返回上一个页面

vue 返回上一个页面

时间:2022-12-06 16:11:44浏览次数:31  
标签:返回 vue back 刷新 go router 页面

一、this.$router.go(-1):原页面中的内容会丢失

  this.$router.go() 刷新

  this.$router.(-1) 后退+刷新

  this.$router(1) 前进

二、this.$router.back():原页面中的内容会保留

  this.$router.back() 后退

  this.$router.back(0) 刷新

  this.$router.back(1) 前进

三:window.history.go(-1): 返回浏览器的上一页,在hash模式下就不会跳回浏览器上一页

 

标签:返回,vue,back,刷新,go,router,页面
From: https://www.cnblogs.com/sgdkg/p/16955595.html

相关文章