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)))
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3b73d-2c28f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3b73d-2c28f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?