I have two components on is the parent component and the other the child component ,the parrent component has a form field in this form field I can add additional form fields,this additional form field is added with the aid of a component ,the form field in the parent has its own reactive variable and the addition component also has it's own reactive variable, so when am about to submit I need to capture the reactive variable details in the child component so I can pass it as a form to the api.
I have tried a lot of the videos on youtube, majority of the videos suggest I use the defineProps() method to capture data from parent component to child , but off all the videos non was given on how to capture data from child to parent , I tried the method if it will work vice versa but it did not .