1. router-link
2. this.$router.push( (函数里面调用)
3. this.Srouter.replace() (用法同push)
4. this.$router.go(n)
.区别:
router-link 跳转前提是在router.js 中配置了要跳转到目的的 to是要跳转要地方
this.$router.push跳转到指定url路径,并想history栈中添加一个记录,点击后退会返回到上一个页面
this.$router.replace跳转到指定url路径,但是history栈中不会有记录,点击返回会跳转到上个页面(就是直接替换了当前页面)
this.$router.go(n)向前或者向后跳转n个页面,n可为正整数或负整数
当n为0时就是强制刷新页面