I'm building a shopping cart with Nuxt. but when i refresh the page the basket automatically empties.
I try librairies like vuex-persist , vuex-persistedstate ... but I did not have a solution.
Now Im looking a way to get the initial state of cart directly from local storage like this.
state: {
cart: [] //here what i want => window.localStorage.getItem("cart")
}
Thanks a lots.