我在下面定义了一条路线:
{
path: 'fit-details',
name: 'fit-details',
component: Fitment,
props: true
},
我正在使用来自州的数据通过我的路线传递道具:
this.$router.push({ path: 'fit-details', query: {
year: this.query.year,
make: this.query.make,
model: this.query.model
}
})
我看到路由在通过时得到了正确定义:www.placeholder.com?year=2008&make=Acura&model=MDX
最后在我的接收组件中,我有 props 实例化:
export default {
props: ['year', 'make', 'model'],
},
但是由于某种原因我无法访问组件中的这些数据。任何帮助将不胜感激,老实说,我在 Vue 路由器方面不是最好的
慕少森
相关分类