Why?
Dec 4, 2020
7
Level 14
Clear local storage - Vue SPA
I try to clear storage on browser close, but this function clear storage and in the case when refresh page...
mounted() {
window.onbeforeunload = function() {
localStorage.clear();
};
},
Level 61
What do you store regarding auth state? You probably already know that can be dangerous.
If there is nothing harmful, then you can use sessionStorage as suggested and you do not have to worry about clearing anything.
1 like
Please or to participate in this conversation.