Browse Source

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

Bill Columbia 9 năm trước cách đây
mục cha
commit
e1d56da760
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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
 })