problem description
the difference between the two is that one creates a new memory space, and the other is just a reference relationship, but I want to know why the difference in the source code leads to the difference between deep copy and shallow copy
related codes
this.dataInfo = JSON.parse(JSON.stringify(data[0][0]));
this.dataInfo = data[0][0];