[Vuejs]-How do I push an object into an array nested in an object and retain reactivity in Vue

1👍

try this

obj.property3.push({ property7: 'value7'})
obj={...obj}

Leave a comment