concepts.md store - "mutations" before "actions"
@@ -25,8 +25,8 @@ import Vuex from 'vuex'
const store = new Vuex.Store({
state: { ... },
- actions: { ... },
mutations: { ... },
+ actions: { ... },
getters: { ... }
})
```