Skip to content

Instantly share code, notes, and snippets.

@vertcitron
Created November 2, 2018 17:37
Show Gist options
  • Save vertcitron/34bb84b4a75002923509839f5c446990 to your computer and use it in GitHub Desktop.
Save vertcitron/34bb84b4a75002923509839f5c446990 to your computer and use it in GitHub Desktop.
// get logged in user infos :
const user = this.$store.getters['user/data']
// register a new user to the backend :
this.$store.dispatch('user/create', newUser)
// modify a todo :
this.$store.dispatch('todos/update', modifiedTodo)
// etc...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment