浏览代码

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: { ... }
 })
 ```