Problem Statement
List two reactivity caveats and their fixes in Vue 3.
Explanation
1) Destructuring reactive breaks reactivity—use toRefs() or store refs individually. 2) Non-reactive globals won’t trigger updates—wrap them with ref/reactive or expose via computed/getter so Vue can track.