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 關注
- 617 瀏覽
添加回答
舉報
0/150
提交
取消