Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created May 1, 2019 11:46
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 uno-de-piera/227c3a2b3059d7383436416eb39190f2 to your computer and use it in GitHub Desktop.
Save uno-de-piera/227c3a2b3059d7383436416eb39190f2 to your computer and use it in GitHub Desktop.
export default {
state: {
user: {
name: '',
surname: '',
email: '',
age: '',
address: ''
}
},
mutations: {
setPropertyOnUser (state, data) {
state.user[data.property] = data.value;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment