After loading my app and immediately taking a Chrome memory heap snapshot, I found the following results.
https://i.stack.imgur.com/QB8u3.png
Upon further exploration of my web app and then returning to the initial loaded page to take another memory heap snapshot, the results were quite different.
https://i.stack.imgur.com/vcCYq.png
It is evident that there has been a significant increase in the number of VueComponents and Vue instances, approximately 10 times more than before. This surge is evidently impacting the app's memory usage greatly.
What tools or methods can be utilized to identify and address the components causing this issue by not being properly destroyed?