Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ALFA
ALFA Wiki
Wiki
Arquitetura
Arquitetura
· Changes
Page history
Update Arquitetura
authored
Nov 10, 2021
by
Marcelo Henrique De Souza
Hide whitespace changes
Inline
Side-by-side
Arquitetura.md
View page @
6a0324e2
...
@@ -108,24 +108,22 @@ Classe Controller, onde serão definidos os endpoints que serão nossa interface
...
@@ -108,24 +108,22 @@ Classe Controller, onde serão definidos os endpoints que serão nossa interface
```
plaintext
```
plaintext
alpha-frontend/
alpha-frontend/
└── src/
| ├── assets/
| │ └── Example.png
| └── components/
| ├── buttons/
| │ └── ExampleButton.vue
| ├── modals/
| │ └── Example.vue
| └── Example.vue
| ├── screens/
| │ ├── Example.vue
| ├── store/
| | └── Example.js
| ├── .gitignore
├── public/
├── public/
│ ├── favicon.ico
| └── Example.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
├── babel.config.js
├── babel.config.js
└── package.json
└── package.json
```
```
...
...