Can I set properties of a VueComponent via the VueRouter?
I have a couple routes
{ path: '/user/:id/budgets', component: Budgets },
{ path: '/budgets', component: Budgets }
Both us the same component but will get completely different record set bases on the routes....
The thing is the action is controlled by a property ..... Can set property values from the route?
{ path: '/user/:id/budgets', component: function(id){
return Vue.extend(Budgets, { props: { id: id } })
} },