vue中的$router.replace;$router.go和$router.push的区别
程序员文章站
2022-03-29 08:13:12
...
$router.go(n)
这个方法的参数是一个整数 在history中前进或者后退几步 类似 window.history.go(n)
$router.push(localhost)
想要不同的URL使用$router.push(localhost) 这个方法想 history 记录 使用点击返回则返回上一步的
$router.replace(localhost)
该方法和$router.push差不多,不同的地方就是他是替换
推荐阅读