Concept Flow - Shallow ref and shallow reactive
Create shallowRef or shallowReactive
Wrap object shallowly
Access or modify top-level properties
Reactivity triggers only for top-level changes
Nested objects remain non-reactive
Use in template or watch for updates
This flow shows how shallowRef or shallowReactive wraps an object shallowly, tracking only top-level changes reactively while nested objects stay non-reactive.