Configurable persistence and rehydration of Pinia stores.
vuex-persistedstate.Nuxt.pnpm add pinia-plugin-persistedstatenpm i pinia-plugin-persistedstateyarn add pinia-plugin-persistedstateimport { createPinia } from 'pinia'
import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'
const pinia = createPinia()
pinia.use(piniaPluginPersistedstate)
persist option to the store you want to be persisted:import { defineStore } from 'pinia'
export const useStore = defineStore('store', {
state: () => ({
someState: 'hello pinia',
}),
persist: true,
})
You can configure how a store is persisted by specifying options to the persist property:
export const useStore = defineStore('store', () => {
const someState = ref('hello pinia')
return { someState }
}, {
persist: {
storage: sessionStorage,
pick: ['someState'],
},
})
All the available configuration options are explained here.
Nuxt support comes out of the box thanks to the included module. You just need to install the package and add the module to your nuxt.config.ts as follows:
export default defineNuxtConfig({
modules: [
'@pinia/nuxt', // required
'pinia-plugin-persistedstate/nuxt',
],
})
More information on storages and configuration in Nuxt here.
There are several limitations that should be considered, more on those here.
See the contribution guide.