You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
382 B

2 years ago
  1. export default function ({ app ,$axios, redirect }) {
  2. $axios.onError(error => {
  3. const code = parseInt(error && error.response && error.response.status)
  4. if (code === 401) {
  5. app.$auth.$storage.removeUniversal('userPicture')
  6. app.$auth.$storage.removeUniversal('userLastName')
  7. app.$auth.$storage.removeUniversal('jwt')
  8. app.$auth.logout()
  9. }
  10. })
  11. }