This Vuex plugin allows you to sync and share the status of your Vue application across multiple tabs or windows using the local storage .
Read moreDoes Vuex support hot reloading?
Vuex supports hot-reloading mutations, modules, actions and getters during development , using webpack’s Hot Module Replacement API. You can also use it in Browserify with the browserify-hmr plugin. Checkout the counter-hot example to play with hot-reload.
Read moreIs Vuex store persistent?
A Typescript-ready Vuex plugin that enables you to save the state of your app to a persisted storage like Cookies or localStorage .
Read moreWhat are getters in Vuex?
Vuex getters behave a lot like Mongoose getters: they’re special properties that are computed from other properties when you access them . For example, suppose your store contains a user’s firstName and lastName . You can write a getter that returns the user’s fullName .
Read more