Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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/).