Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rafinhadufluxo/pokemon-culture
Estudo relacionado sobre requisições de API
https://github.com/rafinhadufluxo/pokemon-culture
api fontend-development json-api student-project vuejs
Last synced: 5 days ago
JSON representation
Estudo relacionado sobre requisições de API
- Host: GitHub
- URL: https://github.com/rafinhadufluxo/pokemon-culture
- Owner: rafinhadufluxo
- Created: 2023-10-23T17:11:07.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-07T19:02:31.000Z (6 months ago)
- Last Synced: 2024-07-07T20:23:13.007Z (6 months ago)
- Topics: api, fontend-development, json-api, student-project, vuejs
- Language: Vue
- Homepage: https://rafinhadufluxo.github.io/pokemon-culture
- Size: 437 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pokemon-culture
use https://pokeapi.co/
## Project setup
```
npm install
```### Compiles and hot-reloads for development
```
npm run serve
```### Compiles and minifies for production
```
npm run build
```### Lints and fixes files
```
npm run lint
```### Don't forget to put .eslint in the root of the project, copy this code below
```
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'eslint:recommended',
'plugin:vue/essential',
],
parserOptions: {
parser: '@babel/eslint-parser',
requireConfigFile: false,
},
rules: {
'vue/no-unused-vars': 'error',
'vue/no-multiple-template-root': 'off', // Desativa a regra no-multiple-template-root
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
},
};
```### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).