Переглянути джерело

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({
 const store = new Vuex.Store({
   state: { ... },
   state: { ... },
-  actions: { ... },
   mutations: { ... },
   mutations: { ... },
+  actions: { ... },
   getters: { ... }
   getters: { ... }
 })
 })
 ```
 ```