https://github.com/pratheeshrussell/vue-component-map
A vscode extension is to generate a component map from vue 2 code.
https://github.com/pratheeshrussell/vue-component-map
component-map vscode-extension vuejs2
Last synced: about 2 months ago
JSON representation
A vscode extension is to generate a component map from vue 2 code.
- Host: GitHub
- URL: https://github.com/pratheeshrussell/vue-component-map
- Owner: pratheeshrussell
- License: mit
- Created: 2024-02-05T19:07:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-05T19:54:48.000Z (over 1 year ago)
- Last Synced: 2025-02-13T15:26:58.939Z (4 months ago)
- Topics: component-map, vscode-extension, vuejs2
- Language: TypeScript
- Homepage:
- Size: 292 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Vue Component Map
The purpose of this extension is to generate a component map from vue code.## How to install
* Download ```vue-component-map-0.0.1-POC.vsix```
* Run the command
```
code --install-extension vue-component-map-0.0.1-POC.vsix
```## How to use
* Open a .vue file
* Open command Palette(ctrl+shift+p)
* search for command ```Vue Component Map```## Features
* Generates a component flow map

## Requirements
* Tested with Vue2 - options api only
## Known Issues
* Unable to load imported items that use a path alias, like ```@/src/components/Header.vue```
* Doesn't identify dynamically loaded components
* Not tested much - so bugs are expected## Release Notes
### 0.0.1-POC
Just to see if this is even possible