Преглед изворни кода

Merge pull request #64 from jbruni/patch-1

concepts.md store - "mutations" before "actions"
Evan You пре 9 година
родитељ
комит
af74ecec07
1 измењених фајлова са 1 додато и 1 уклоњено
  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: { ... }
 })
 ```