Procházet zdrojové kódy

Merge pull request #118 from billcolumbia/update-docs-getting-started

Update store with default export to match later docs and examples
Evan You před 9 roky
rodič
revize
55ac7d8621
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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
 })