所有父子关系 Vue 组件

All Parent-Child relationships Vue Components

如何获取项目中所有Vue组件的父子关系? 命令行或 console.log 都可以。

期望的输出:

├── rootpage
│   ├── componentA
│   │   ├── componentD
│   │   ├── componentF
│   ├── componentB
│   │   ├── componentD
│   │   ├── componentG

您必须使用其中一种 JS 解析器来执行此操作。您可能还必须将其与 vue-loader 集成才能提取脚本块。

https://esprima.org/

https://github.com/acornjs/acorn