Created
July 16, 2019 17:58
-
-
Save sr2ds/4f99365585cfb738a81db9fc26d0b2de to your computer and use it in GitHub Desktop.
Search Components on VueJs Application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Uma maneira de encontrar os componentes criados manualmente dentro de uma aplicação vuejs. Retorna somentes os que possuem props. | |
## A way to find manually created components within a vuejs application. Returns only those who have props. | |
grep -R "props\:" src/*| awk '{print $1}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment