I'm trying to figure out how to pass updated props to child component. For example,
// parent component
// temp is an reactive object
<Child :temp="temp">
and in Child component,when temp gets modified, the temp props isn't changed.
I'm using script-setup in vue3.
Can you please help me with this issue?