perf: 优化代码

This commit is contained in:
insistence
2024-12-11 09:16:41 +08:00
parent 1d08ba9905
commit c9ecfd213c
5 changed files with 15 additions and 14 deletions

View File

@@ -26,6 +26,7 @@ const sessionCache = {
if (value != null) {
return JSON.parse(value)
}
return null
},
remove (key) {
sessionStorage.removeItem(key);
@@ -59,6 +60,7 @@ const localCache = {
if (value != null) {
return JSON.parse(value)
}
return null
},
remove (key) {
localStorage.removeItem(key);