Explorar o código

Merge pull request #64 from jbruni/patch-1

concepts.md store - "mutations" before "actions"
Evan You %!s(int64=9) %!d(string=hai) anos
pai
achega
af74ecec07
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      docs/en/concepts.md

+ 1 - 1
docs/en/concepts.md

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