How to clear state in vuex store?
I have just found the great solution that works for me. const getDefaultState = () => { return { items: [], status: ’empty’ } } // initial state const state = getDefaultState() const actions = { resetCartState ({ commit }) { commit(‘resetState’) }, addItem ({ state, commit }, item) { /* … */ } } … Read more