Nuxt/examples/vuex-persistedstate/store/index.js

15 lines
266 B
JavaScript
Raw Normal View History

2017-08-22 11:24:23 +00:00
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()
]