DEV Community

Discussion on: Pass all props to children in Vue

Collapse
 
tserkov profile image
James

Or, use the recommend Vue way, provide/inject: vuejs.org/v2/guide/components-edge...

Collapse
 
daneren2005 profile image
Scott

Reading the docs those aren't reactive which is a huge reason to use Vue in the first place. For some functions that return never changing data it's great but not for passing properties down to children.