Here is my router config.
const router = new VueRouter({
routes: [
{
path: '/user/:id',
components: User,
props: {
sidebar: true
}
}
]
})
I can't access to all props (e.g sidebar and id), only sidebar in this config.
Any ideas ?