Merge branch 'docs-patch-49' into 'master'

Updates how to export the state object

See merge request gitlab-org/gitlab-ce!25947
This commit is contained in:
Phil Hughes 2019-03-11 09:10:05 +00:00
commit a89df58527
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ The first thing you should do before writing any code is to design the state.
Often we need to provide data from haml to our Vue application. Let's store it in the state for better access.
```javascript
export default {
export default () => ({
endpoint: null,
isLoading: false,
@ -62,7 +62,7 @@ Often we need to provide data from haml to our Vue application. Let's store it i
errorAddingUser: false,
users: [],
};
});
```
#### Access `state` properties