Guest User

Untitled

a guest
Jun 25th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. export default class Auth {
  2. ...
  3.  
  4. logout() {
  5. // Clear access token and ID token from local storage
  6. localStorage.removeItem('access_token');
  7. localStorage.removeItem('id_token');
  8. localStorage.removeItem('expires_at');
  9. // navigate to the home route
  10. Router.push('/');
  11. }
  12. }
Add Comment
Please, Sign In to add comment