vue路由中怎么传入数据
1 回答
米琪卡哇伊
TA贡献1998条经验 获得超6个赞
动态路由,然后用$route.params去获取路由对象里的信息
详情可以去看vue router的官方文档
下面是我最近写的例子
route.js
export default new Router({
routes: [
{
path: '/',
name: 'index',
component: index
},
{
path: '/list/:category',
name: "list",
component: list,
meta: { id: 'list-kind' }
}
]
})
parent.vue
<router-link :to="{ path: './list/learn'}" tag="section" class="item">
<img src="../assets/h5_icon_1.png" alt="Subject Learn">
<p>It is a learning fairyland for Chinese learners</p>
</router-link>
child.vue
created(){
this.fetch();
this.title = this.$route.params.category.toUpperCase();
}
- 1 回答
- 0 关注
- 588 浏览
添加回答
举报
0/150
提交
取消