the parent component has an array structure as follows
data = [
{xx:xx},
{xx:xx}......
]
I passed the object in data to the child component. The child component wants to modify the value of this object. How to refresh the value of the parent component?
and according to the vue document
I modify the object directly in the child component, the parent component is supposed to change, but there is no response.
ps: uses the $emit method, which can be done, but for some reason, $emit is not the best solution for me.
ask some great god to give me some advice.