vue useRouter 跳转到其他页面
时间: 2023-07-15 22:13:44 浏览: 93
Vue.js实战之利用vue-router实现跳转页面
5星 · 资源好评率100%
在 Vue.js 中,可以使用 `this.$router.push()` 方法进行路由跳转。例如,要跳转到名为 `other-page` 的页面,可以使用以下代码:
```
this.$router.push('/other-page');
```
其中 `/other-page` 是你想要跳转的页面路径。
如果你想要传递参数,可以使用以下代码:
```
this.$router.push({ path: '/other-page', query: { key: value }});
```
其中 `key` 和 `value` 是你想要传递的参数。在目标页面中,你可以使用 `this.$route.query.key` 获取该参数的值。
另外,还可以使用 `this.$router.replace()` 方法进行路由跳转,它与 `push()` 方法类似,但不会在浏览器的历史记录中留下记录。
阅读全文