1
Showing
1 changed file
with
0 additions
and
2 deletions
... | @@ -95,7 +95,6 @@ export default { | ... | @@ -95,7 +95,6 @@ export default { |
95 | } | 95 | } |
96 | }, | 96 | }, |
97 | logoutHandler() { | 97 | logoutHandler() { |
98 | console.log("logoutHandler"); | ||
99 | this.clearCache(); | 98 | this.clearCache(); |
100 | httpPost({ | 99 | httpPost({ |
101 | url: api.logout | 100 | url: api.logout |
... | @@ -107,7 +106,6 @@ export default { | ... | @@ -107,7 +106,6 @@ export default { |
107 | clearCache() { | 106 | clearCache() { |
108 | for (let index = 0; index < sessionStorage.length; index++) { | 107 | for (let index = 0; index < sessionStorage.length; index++) { |
109 | let key = sessionStorage.key(index); | 108 | let key = sessionStorage.key(index); |
110 | console.log(key); | ||
111 | sessionStorage.removeItem(key); | 109 | sessionStorage.removeItem(key); |
112 | } | 110 | } |
113 | }, | 111 | }, | ... | ... |
-
Please register or sign in to post a comment