mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-10-03 02:36:39 +08:00
9 lines
163 B
JavaScript
9 lines
163 B
JavaScript
export const localSave = (key, value) => {
|
|
localStorage.setItem(key, value);
|
|
};
|
|
|
|
export const localRead = key => {
|
|
return localStorage.getItem(key) || '';
|
|
};
|
|
|