You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
535 B
28 lines
535 B
2 years ago
|
/**
|
||
|
* 配置浏览器本地存储的方式,可直接存储对象数组。
|
||
|
*/
|
||
|
|
||
|
import WebStorageCache from 'web-storage-cache'
|
||
|
|
||
|
type CacheType = 'localStorage' | 'sessionStorage'
|
||
|
|
||
|
export const CACHE_KEY = {
|
||
|
IS_DARK: 'isDark',
|
||
|
USER: 'user',
|
||
|
LANG: 'lang',
|
||
|
THEME: 'theme',
|
||
|
LAYOUT: 'layout',
|
||
|
ROLE_ROUTERS: 'roleRouters',
|
||
|
DICT_CACHE: 'dictCache'
|
||
|
}
|
||
|
|
||
|
export const useCache = (type: CacheType = 'localStorage') => {
|
||
|
const wsCache: WebStorageCache = new WebStorageCache({
|
||
|
storage: type
|
||
|
})
|
||
|
|
||
|
return {
|
||
|
wsCache
|
||
|
}
|
||
|
}
|