Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ilikerobots/3f1eadf734fba62862bf486a5c0bc64b to your computer and use it in GitHub Desktop.
Save ilikerobots/3f1eadf734fba62862bf486a5c0bc64b to your computer and use it in GitHub Desktop.
export default {
state: {count: 0},
mutations: {
increment: state => state.count++,
decrement: state => state.count--
},
persistentPaths: ["count", ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment