Skip to content

Instantly share code, notes, and snippets.

@hoangtuan151
Created March 24, 2020 03:16
Show Gist options
  • Save hoangtuan151/1615ecaf2d4de6d3b5bdbf154cf74efa to your computer and use it in GitHub Desktop.
Save hoangtuan151/1615ecaf2d4de6d3b5bdbf154cf74efa to your computer and use it in GitHub Desktop.
const vuexPersist = new VuexPersist({
key: 'app-store',
storage: window.localStorage,
reducer: state => ({
app_locale: state.app_locale
})
})
export default new Vuex.Store({
plugins: [vuexPersist.plugin],
state: {
app_locale: 'en',
},
mutations: {
SET_APP_LOCALE (state, payload) {
state.app_locale = payload
},
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment