File | Description |
---|---|
constant | Defines the schema of data stored in the DB and the resolved form received through fetch. |
dictionary | Defines the names, descriptions, API names, enums, error messages, etc. of the model and model fields in multiple languages. |
signal | Defines the data shape that the backend opens and the data shape received by the frontend. |
File | Description |
---|---|
document | constant 스키마 기반의 MongoDB Document/Modeland Redis cache, natural language search, etc. |
service | Writes the business logic that is actually needed for the domain operation. |
File | Description |
---|---|
store | Defines the state and action related to the domain in the global single store. |
Template | Defines the UI components needed to create/update the domain data. |
Unit | Defines the UI components needed to display the domain data when multiple data is retrieved. |
Util | Defines the UI components needed to create special functions related to the domain. |
View | Defines the UI components needed to display the domain data when a single data is retrieved. |
Zone | Combines existing components to create a container that can be used in actual pages. |
The store handles the domain state and business logic.
Template, Unit, View provide reusable UI components.
Zone combines components to create a complete page.