feat: 自动导入新增

Former-commit-id: d706089dce852facbc461ab8d2e5cb5c37bcb2ed
This commit is contained in:
haoxr
2023-02-06 01:10:06 +08:00
parent 306734b441
commit 7b72d7e476
2 changed files with 6 additions and 22 deletions

View File

@@ -1,22 +0,0 @@
/**
* window.sessionStorage 浏览器临时缓存
*/
export const sessionStorage = {
// 设置临时缓存
set(key: string, val: any) {
window.sessionStorage.setItem(key, JSON.stringify(val));
},
// 获取临时缓存
get(key: string) {
const json: any = window.sessionStorage.getItem(key);
return JSON.parse(json);
},
// 移除临时缓存
remove(key: string) {
window.sessionStorage.removeItem(key);
},
// 移除全部临时缓存
clear() {
window.sessionStorage.clear();
}
};