1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-02-19 07:00:59 +00:00
Nuxt/examples/vuex-store/store/mutations.js
2017-05-21 02:03:11 +02:00

7 lines
101 B
JavaScript

const mutations = {
increment (state) {
state.counter++
}
}
export default mutations