Skip to content

Instantly share code, notes, and snippets.

@championswimmer
Created July 14, 2018 00:06
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 championswimmer/f521a511f99404d7877305f0782e9b8c to your computer and use it in GitHub Desktop.
Save championswimmer/f521a511f99404d7877305f0782e9b8c to your computer and use it in GitHub Desktop.
const module = {
state: {wheels: 2},
mutations: {
incrWheels(state, extra) {
state.wheels += extra
}
},
getters: {
axles: (state) => state.wheels / 2
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment