Skip to content

Instantly share code, notes, and snippets.

@Mattchewone
Created December 6, 2018 23:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mattchewone/a3fb09fa0323468658a14f61b669af28 to your computer and use it in GitHub Desktop.
Save Mattchewone/a3fb09fa0323468658a14f61b669af28 to your computer and use it in GitHub Desktop.
Getting the initial data loaded
export default {
methods: {
...mapActions('messages', {
findMessages: 'find'
})
},
created () {
this.findMessages({ query: { $or: [{ to: user._id }, { from: user._id }] } })
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment