Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 630 Bytes

DEV-GUIDELINES.md

File metadata and controls

21 lines (11 loc) · 630 Bytes

Developer guidelines

Components

Components are not wired to the internet. This means that they must take all information as properties or from a store.

It also means that they will have to emit events or update a store, never call an API.

Views

These are Vue Components which are wired to the internet. This means that they can call APIs, gather additional information.

These are also the ones mapped in our routes.

Stores

Stores may be connected to the network, and through these, components can call out into the world.

Resources