mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
15 lines
266 B
JavaScript
15 lines
266 B
JavaScript
import createPersistedState from 'vuex-persistedstate'
|
|
|
|
export const state = () => ({
|
|
counter: 0
|
|
})
|
|
|
|
export const mutations = {
|
|
increment: (state) => state.counter++,
|
|
decrement: (state) => state.counter--
|
|
}
|
|
|
|
export const plugins = [
|
|
createPersistedState()
|
|
]
|