diff options
author | Sylhare <sylhareng@gmail.com> | 2018-12-11 14:49:49 +0000 |
---|---|---|
committer | Sylhare <sylhareng@gmail.com> | 2018-12-11 14:49:49 +0000 |
commit | 00ba82487d5a959ce4f36f3c2d2599cd027cdd48 (patch) | |
tree | b121e3b92e4e410be776a3b226ac9c818cb98332 /doc | |
parent | 56936cd89838d85f038a6f25bb3033f8fa7a0ee1 (diff) | |
download | gitlab-ce-00ba82487d5a959ce4f36f3c2d2599cd027cdd48.tar.gz |
Add spaces before code snippets
Diffstat (limited to 'doc')
-rw-r--r-- | doc/development/fe_guide/vuex.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/development/fe_guide/vuex.md b/doc/development/fe_guide/vuex.md index 0f57835fb87..65963b959f7 100644 --- a/doc/development/fe_guide/vuex.md +++ b/doc/development/fe_guide/vuex.md @@ -137,6 +137,7 @@ By following this pattern we guarantee: #### Dispatching actions To dispatch an action from a component, use the `mapActions` helper: + ```javascript import { mapActions } from 'vuex'; @@ -204,6 +205,7 @@ export const getUsersWithPets = (state, getters) => { ``` To access a getter from a component, use the `mapGetters` helper: + ```javascript import { mapGetters } from 'vuex'; @@ -226,6 +228,7 @@ export const ADD_USER = 'ADD_USER'; ### How to include the store in your application The store should be included in the main component of your application: + ```javascript // app.vue import store from 'store'; // it will include the index.js file @@ -364,7 +367,8 @@ Because we're currently using [`babel-plugin-rewire`](https://github.com/speedsk `[vuex] actions should be function or object with "handler" function` To prevent this error from happening, you need to export an empty function as `default`: -``` + +```javascript // getters.js or actions.js // prevent babel-plugin-rewire from generating an invalid default during karma tests |