nuxt-for-preset
 
 
 

9 lines
121 B

export const state = () => ({
counter: 0
})
export const mutations = {
increment(state) {
state.counter++
}
}