diff options
| author | Enrique Alcántara <ealcantara@gitlab.com> | 2019-06-28 17:30:25 +0000 |
|---|---|---|
| committer | Enrique Alcántara <ealcantara@gitlab.com> | 2019-06-28 17:30:25 +0000 |
| commit | ecbbf82d9a08712686836cf2f73de0994342bfab (patch) | |
| tree | fac310bd337cfac1771e8207424fb2b1c5b3b21a | |
| parent | 2e24e7c66f333192a03e236082be2436e71b87ed (diff) | |
| download | gitlab-ce-62664-update-documentation-around-instantiating-stores.tar.gz | |
Apply suggestion to doc/development/fe_guide/vuex.md62664-update-documentation-around-instantiating-stores
| -rw-r--r-- | doc/development/fe_guide/vuex.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/fe_guide/vuex.md b/doc/development/fe_guide/vuex.md index 9f0c141b750..8af0d5d4f92 100644 --- a/doc/development/fe_guide/vuex.md +++ b/doc/development/fe_guide/vuex.md @@ -37,7 +37,7 @@ import state from './state'; Vue.use(Vuex); -export const createStore = () => new Vuex.Store({ +export default const createStore = () => new Vuex.Store({ actions, getters, mutations, |
