In the composition API reactivity uses the ref() and reactive() functions to create proxies for data. As far as I understand, the main difference is that ref creates a shallow copy while reactive creates a deep copy of the objects.
I am passing an object as a parameter to a component and I am having issues with reactivity. Specifically, fields of the object, while updating, do not trigger any changes in the UI. That leads me to believe that parameters are passed as refs rather than reactive objects.
Is there a way to have the view update when the content of the object changes?