Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created November 28, 2022 14:54
Show Gist options
  • Save NandoKstroNet/b597085042fff6ca137df949feb293a9 to your computer and use it in GitHub Desktop.
Save NandoKstroNet/b597085042fff6ca137df949feb293a9 to your computer and use it in GitHub Desktop.
Storage Service para projeto Vue Experts Store Front no curso, bloco 3, Laravel Mastery em https://laravelmastery.com.br
export default {
setData(key, value) {
localStorage.setItem(key, value);
},
getData(key) {
return localStorage.getItem(key);
},
removeData(key) {
localStorage.removeItem(key);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment