go(-1):原页面表单中的内容会丢失;
history.go(-1):后退+刷新;
history.go(0):刷新;
history.go(1):前进;
注意:history.go(-1)是返回浏览器的上一页,而由于Vue是单页面应用,有的浏览器对于hash变更不认为是两个不同的页面,在hash模式下就不会跳回浏览器上一页
this.$router.go(-1):后退+刷新;
this.$router.go(0):刷新;
this.$router.go(1):前进;
back():原页面表单中的内容会保留;
history.back():后退
history.back(0):刷新
history.back(1):前进this.$router.back():后退 ;
this.$router.back(0):刷新;
this.$router.back(1):前进;