├── GithubProfile.vue ├── README.md └── package.json /GithubProfile.vue: -------------------------------------------------------------------------------- 1 | 29 | 30 | 71 | 158 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vue-github-profile 2 | A vue component to view the profile and repos of determined user 3 | 4 | Demonstração economist 5 | 6 | ## Instalation 7 | ```sh 8 | $ npm install --save vue-github-profile 9 | ``` 10 | 11 | ## Usage 12 | 13 | ```HTML 14 | 15 | ``` 16 | 17 | ```javascript 18 | 32 | ``` 33 | 34 | ## Example 35 | 36 | ```HTML 37 | 38 | ``` 39 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-github-profile", 3 | "version": "1.0.3", 4 | "description": "A vue component to view the profile and repos of determined user", 5 | "main": "GithubProfile.vue", 6 | "scripts": { 7 | "test": "" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/GabrielBibiano/vue-github-profile.git" 12 | }, 13 | "keywords": [ 14 | "VueJs", 15 | "github", 16 | "profile", 17 | "user", 18 | "repositories", 19 | "vue" 20 | ], 21 | "author": "Gabriel Bibiano", 22 | "license": "ISC", 23 | "dependencies": { 24 | "axios": "^0.16.2" 25 | }, 26 | "bugs": { 27 | "url": "https://github.com/GabrielBibiano/vue-github-profile/issues" 28 | }, 29 | "homepage": "https://github.com/GabrielBibiano/vue-github-profile#readme" 30 | } 31 | --------------------------------------------------------------------------------