mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-12 01:55:06 +08:00
18 lines
359 B
TypeScript
18 lines
359 B
TypeScript
![]() |
/**
|
|||
|
* 配置浏览器本地存储的方式,可直接存储对象数组。
|
|||
|
*/
|
|||
|
|
|||
|
import WebStorageCache from 'web-storage-cache'
|
|||
|
|
|||
|
type CacheType = 'sessionStorage' | 'localStorage'
|
|||
|
|
|||
|
export const useCache = (type: CacheType = 'sessionStorage') => {
|
|||
|
const wsCache: WebStorageCache = new WebStorageCache({
|
|||
|
storage: type
|
|||
|
})
|
|||
|
|
|||
|
return {
|
|||
|
wsCache
|
|||
|
}
|
|||
|
}
|