pateketrueke/yrv

Component props

Closed this issue · 1 comments

Hi,

Thanks for an excellent svelte router.

How would one pass props to routed components?

E.g.:
<Route exact path="/#faq" component={<FAQ prop1=true/>} /> ? (this doesn't work)

Any additional property you assign to <Route /> will be passed down (except private props), e.g.

<Route exact path="/#faq" component={FAQ} prop1=true/>