Within the data() method, I have defined an array called exampleArray.
When mounted(), a function is called to add elements to this array.
Upon logging this.exampleArray, the result shows as a proxy object.
In order to iterate through this array in another function, it is recommended to use toRaw() to retrieve the unproxied array.
I attempted console.log(toRaw(this.examplearray)) which initially displayed an empty array when collapsed, but expanding it revealed the actual contents. See Console Picture
However, checking console.log(toRaw(this.exampleArray).length) returned 0, preventing me from using a forEach loop on it.