소스 검색

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