Visualize Vue.js component relationships and communication channels, i.e. props, events and slots. This developer tool operates on the command line and aims to give in-depth insight into a Vue.js project to support refactoring.
Often base components are registered globally for every Vue component with Vue.compont(...) or app.component(...) in Vue 3.
What could be a strategy for parsing such components as well?
Often base components are registered globally for every Vue component with
Vue.compont(...)
orapp.component(...)
in Vue 3. What could be a strategy for parsing such components as well?