I have a parent component with the following line
You have to declare the props and bind them to pass them to the child. Have a look at https://vuejs.org/v2/api/#v-bind for available options
specifically, this may be of interest
This means you can pass down the object, and have the child parse the appropriate props. This means that the child has to have the props defined in order to catch them. So what you may be able to do is, in the case of the parent, have :propBag="propBag"
and inside edit, pass down v-bind="propBag"
, and that will use the correct props at the child level