This cookbook is similar to Vue cookbook but contains our custom recipes for some specific cases.
One good pattern Angular thought us - is to use a service for HTTP calls. Since we don't have Dependency Injection in Vue it can't be used the same way it is used in Angular (we should avoid manually creating instances of services).
Assuming we use TypeScript and axios here's the pattern we use for HTTP service: class with static methods.
