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
- js-cookie to use browser Cookies
- window.localStorage (remains, across PC reboots, untill you clear browser data)
- window.sessionStorage (vanishes when you close browser tab)
- localForage Uses IndexedDB from the browser
Post a Comment for "Vuex Localestorage Plugin For Nuxt.js"