mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 18:13:54 +00:00
b116d0ded4
[release]
10 lines
121 B
JavaScript
10 lines
121 B
JavaScript
export const state = () => ({
|
|
counter: 0
|
|
})
|
|
|
|
export const mutations = {
|
|
COUNT (state) {
|
|
state.counter += 1
|
|
}
|
|
}
|