Returns a reactive proxy of the object.
The reactive conversion is "deep": it affects all nested properties. A reactive object also deeply unwraps any properties that are refs while maintaining reactivity.
The source object.
const obj = reactive({ count: 0 }) Copy
const obj = reactive({ count: 0 })
https://vuejs.org/api/reactivity-core.html#reactive
Returns a reactive proxy of the object.
The reactive conversion is "deep": it affects all nested properties. A reactive object also deeply unwraps any properties that are refs while maintaining reactivity.