1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-02-20 23:49:38 +00:00
Nuxt/examples/vuex-store/store/mutations.js

7 lines
101 B
JavaScript
Raw Normal View History

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