start to properly use vuex

This commit is contained in:
Jakob Schrettenbrunner 2018-06-04 00:45:01 +02:00
parent 20472a903c
commit 58ad7a4b27
12 changed files with 1207 additions and 156 deletions

View file

@ -0,0 +1,6 @@
const LoadingState = {
LOADING: 'loading',
DONE: 'done',
ERROR: 'error',
};
export default LoadingState;