How to observe the new array or object after vue deep copy?

defines an empty array multiclewcontent, in data to traverse the data after getting it, and the length of the data is the length of the multiclewcontent.

this.multiclewcontent[i] = JSON.parse(JSON.stringify(this.arr));

finally get the following array

you can see that the element vue can no longer be observed. How to solve this problem?

Mar.17,2021

// Vue.set
Vue.set(this.multiclewcontent, i, JSON.parse(JSON.stringify(this.arr)))

// 
this.multiclewcontent.push(JSON.parse(JSON.stringify(this.arr)))
Menu