vue使用JS的形式进行路由导航
Posted kangkang-saonian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue使用JS的形式进行路由导航相关的知识,希望对你有一定的参考价值。
// 注意: 一定要区分 this.$route 和 this.$router 这两个对象, // 其中: this.$route 是路由【参数对象】,所有路由中的参数, params, query 都属于它 // 其中: this.$router 是一个路由【导航对象】,用它 可以方便的 使用 JS 代码,实现路由的 前进、后退、 跳转到新的 URL 地址 console.log(this); // 1. 最简单的 // this.$router.push("/home/goodsinfo/" + id); // 2. 传递对象 // this.$router.push({ path: "/home/goodsinfo/" + id }); // 3. 传递命名的路由 this.$router.push({ name: "goodsinfo", params: { id } }); { path: ‘/home/goodsinfo/:id‘, component: GoodsInfo, name: ‘goodsinfo‘ },
以上是关于vue使用JS的形式进行路由导航的主要内容,如果未能解决你的问题,请参考以下文章