| 123456789101112131415161718192021 |
- // 封装本地存储
- // 存
- export const setLocal = (key: any, value: any) => {
- localStorage.setItem(key, JSON.stringify(value))
- }
- // 取
- export const getLocal = (key: any) => {
- return JSON.parse(localStorage.getItem(key))
- }
- // 删除
- export const removeLocal = (key: any) => {
- localStorage.removeItem(key)
- }
- // 清空
- export const clearLocal = () => {
- localStorage.clear()
- }
|