Skip to content

Instantly share code, notes, and snippets.

@hoangitk
Forked from iagodahlem/organization-by-concepts.md
Last active February 19, 2019 07:00
Show Gist options
  • Save hoangitk/17f46665f0b6631c8b49d66f8942ea15 to your computer and use it in GitHub Desktop.
Save hoangitk/17f46665f0b6631c8b49d66f8942ea15 to your computer and use it in GitHub Desktop.
Vue: Project Organization by concepts

Vue: Project Organization by concepts

|-- src
|  |-- app
|  |  |-- user
|  |  |  |-- CreateUser.js
|  |  |-- article
|  |  |  |-- GetArticle.js
|  |-- domain
|  |  |-- user
|  |  |  |-- index.js
|  |-- infra
|  |  |-- common
|  |  |  |-- httpService.js
|  |  |-- user
|  |  |  |-- UserRepository.js
|  |  |-- article
|  |  |  |-- ArticleRepository.js
|  |-- store
|  |  |-- index.js
|  |  |-- user
|  |  |  |-- index.js
|  |-- view
|  |  |-- ui
|  |  |  |-- Button.js
|  |  |  |-- Input.js
|  |  |-- user
|  |  |  |-- CreateUserPage.js
|  |  |  |-- UserForm.js
|  |  |-- article
|  |  |  |-- ArticlePage.js
|  |  |  |-- Article.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment