Skip to content Skip to sidebar Skip to footer

Vuex Localestorage Plugin For Nuxt.js

In my project, I faced with a problem the cookie technology and I can't use it because my client gets problems with it because cookies should have some button for notification, and

Solution 1:

If you want to persist Vuex Data you can use vuex-persist

Which will persist your data on-page.

With vuex-persist you have 3-4 options to store vuex data

  1. js-cookie to use browser Cookies
  2. window.localStorage (remains, across PC reboots, untill you clear browser data)
  3. window.sessionStorage (vanishes when you close browser tab)
  4. localForage Uses IndexedDB from the browser

Post a Comment for "Vuex Localestorage Plugin For Nuxt.js"