this.$router.push 跳转首页
时间: 2023-11-14 08:09:51 浏览: 73
Vue this.$router.push(参数)实现页面跳转操作
这是一个 Vue.js 中的路由跳转方法,可以用于在组件中进行页面跳转。this.$router.push('home') 表示跳转到名为 'home' 的路由页面。如果需要传递参数,可以使用对象的方式进行传递,例如:this.$router.push({ path: 'home', query: { id: 1 } })。
阅读全文