Should be able to pass props to a routes component from the route.
Thinking:
new Route({
path: '/foo',
component: Foo,
props: {
this: 'that'
}
})
would result in a props object (before hooks etc...) of:
{
path: '/foo' # completePath to route
this: 'that'
router: router
}