路由this. $router.push、replace、go的区别

1.this. $router.push('url')

跳转到指定的URL,在history栈中添加一个记录,点击后退会返回上一个页面

2.this. $router.replace('url')

跳转到指定的url,不会向history里面添加新的记录,点击返回,会跳转到上上一个页面。上一个记录是不存在的。

3.this. $router.go(n)

当前页面向前或向后跳转多少个页面,类似 window.history.go(n)。n可为正数可为负数。正数返回上一个页面

this. $router.go(1) //前进一步

this. $router.go(-1) //后退一步

你可能感兴趣的:(路由this. $router.push、replace、go的区别)