路由之间跳转的方式

路由之间的跳转常用的有4种方式

1、

2、this.$router.push()跳转到指定的 url,并在 history 中添加记录,点击回 退返回到上一个页面

3、this.$router.replace()跳转到指定的 url,但是 history 中不会添加记录, 点击回退到上上个页面

4、this.$touter.go(n)向前或者后跳转 n 个页面,n 可以是正数也可以是负数

你可能感兴趣的:(javascript,vue)