Closed
Description
What problem does this feature solve?
I have several modules defined on my store, with its own store on each module:
export default new Vuex.Store({
modules: {
user,
items,
invoices,
... // A bunch of other modules
}
})
The issue is that when the user logs out the app, all the information in the store remains since no mutation is being called to effect them or the set them to its initial state, therefore when another user logs in he can see information of the previous user, I know that I can just create a new mutation to set the store to its initial state, but that means that I'd need to call this mutation for each module that I have.
Is there a way to clear them all?
What does the proposed API look like?
It would be great to have a reserved mutation named 'clearAll' or alike, that resets all the module stores to its initial state as they were defined
...mapMutations([
'clearAll'
])
Then on the logout method
logout: function () {
this.$store.dispatch('logout').then(
() => {
this.$router.push('/login')
this.clearAll()
}
)
},
Metadata
Metadata
Assignees
Labels
No labels