Skip to content

Instantly share code, notes, and snippets.

@fhsinchy
Last active August 28, 2021 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fhsinchy/d5189ba0c7d741543a277a35086fa589 to your computer and use it in GitHub Desktop.
Save fhsinchy/d5189ba0c7d741543a277a35086fa589 to your computer and use it in GitHub Desktop.
// src/store.js
// ...
export const actions = {
logout() {
store.accessToken = null;
window.localStorage.removeItem('accessToken');
window.localStorage.removeItem('refreshToken');
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment