소스 검색

Update Vuex store instance to default export to match later docs and examples

Bill Columbia 9 년 전
부모
커밋
e1d56da760
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/en/getting-started.md

+ 1 - 1
docs/en/getting-started.md

@@ -25,7 +25,7 @@ const mutations = {
   }
 }
 
-const store = new Vuex.Store({
+export default new Vuex.Store({
   state,
   mutations
 })