0👍
It is the expected behavior. Vuex state is kept in memory and when you reload the page it gets purged.
0👍
Instead of this state
export const state = () => {
return {
bots: []
}
}
try this
export const state = () => ({
bots: []
})
- [Vuejs]-I would like to know how to install and use mathlive in NuxtJS
- [Vuejs]-TypeError: Cannot read properties of null in the template tag
Source:stackexchange.com