vuejs / devtools-v6

⚙️ Browser devtools extension for debugging Vue.js applications.
https://devtools-v6.vuejs.org/
MIT License
24.68k stars 4.14k forks source link

Add way to inspect the dependency chain of a piece of reactive state #2179

Open cory-weiner opened 4 months ago

cory-weiner commented 4 months ago

What problem does this feature solve?

It would be very helpful to see the dependency tree for a given reactive piece of state. For example, on a computed property, to list all the reactive dependancies of that property. Then for each dependency, list it's dependancies etc.

In theory one could produce a graph of all related state in this manner.