Skip to content

Instantly share code, notes, and snippets.

@sr2ds
Created July 16, 2019 17:58
Show Gist options
  • Save sr2ds/4f99365585cfb738a81db9fc26d0b2de to your computer and use it in GitHub Desktop.
Save sr2ds/4f99365585cfb738a81db9fc26d0b2de to your computer and use it in GitHub Desktop.
Search Components on VueJs Application
#!/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