mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 17:13:56 +00:00
10 lines
121 B
JavaScript
10 lines
121 B
JavaScript
|
export const state = () => ({
|
||
|
counter: 0
|
||
|
})
|
||
|
|
||
|
export const mutations = {
|
||
|
COUNT (state) {
|
||
|
state.counter += 1
|
||
|
}
|
||
|
}
|