... | ... | @@ -108,24 +108,22 @@ Classe Controller, onde serão definidos os endpoints que serão nossa interface |
|
|
|
|
|
```plaintext
|
|
|
alpha-frontend/
|
|
|
└── src/
|
|
|
| ├── assets/
|
|
|
| │ └── Example.png
|
|
|
| └── components/
|
|
|
| ├── buttons/
|
|
|
| │ └── ExampleButton.vue
|
|
|
| ├── modals/
|
|
|
| │ └── Example.vue
|
|
|
| └── Example.vue
|
|
|
| ├── screens/
|
|
|
| │ ├── Example.vue
|
|
|
| ├── store/
|
|
|
| | └── Example.js
|
|
|
| ├── .gitignore
|
|
|
├── public/
|
|
|
│ ├── favicon.ico
|
|
|
│ └── index.html
|
|
|
├── src/
|
|
|
│ ├── assets/
|
|
|
│ │ └── logo.png
|
|
|
│ ├── models/
|
|
|
│ │ └── example.js
|
|
|
│ ├── router/
|
|
|
│ │ └── index.js
|
|
|
│ ├── service/
|
|
|
│ │ └── example.service.js
|
|
|
│ ├── views/
|
|
|
│ │ └── example.vue
|
|
|
│ ├── App.js
|
|
|
│ └── main.js
|
|
|
├── .gitignore
|
|
|
├── README.md
|
|
|
| └── Example.ico
|
|
|
├── babel.config.js
|
|
|
└── package.json
|
|
|
```
|
... | ... | |