Nuxt/examples/vuex-store/store/mutations.js

8 lines
93 B
JavaScript
Raw Normal View History

2017-05-21 00:03:11 +00:00
const mutations = {
2017-10-31 13:43:55 +00:00
increment(state) {
state.counter++
}
2017-05-21 00:03:11 +00:00
}
2017-10-31 13:43:55 +00:00
export default mutations