文件名称:stencil-store-storage:同步到本地存储和会话存储的存储
文件大小:132KB
文件格式:ZIP
更新时间:2024-06-05 17:51:53
TypeScript
模具存储 模板存储是一种使模板存储与localStorage或sessionStorage保持同步的简单方法。 您也可以提供自己的存储空间。 它只需要实现两种方法: getItem(key: string): string | null setItem(key: string, value: any): void 安装 npm install --save-dev stencil-store-storage 使用它 import { createLocalStore } from 'stencil-store-storage' ; export const values = createLocalStore ( 'key-for-local-storage' , { field : 'value' , anotherField : Math . PI } ) ; 如果cr
【文件预览】:
stencil-store-storage-master
----rollup.config.js(400B)
----package.json(1KB)
----.github()
--------workflows()
----jest.config.js(335B)
----package-lock.json(294KB)
----test-app()
--------package.json(977B)
--------readme.md(4KB)
--------stencil.config.ts(335B)
--------LICENSE(1KB)
--------package-lock.json(167KB)
--------src()
--------tsconfig.json(492B)
--------.gitignore(245B)
--------.editorconfig(244B)
----src()
--------stores()
--------index.ts(93B)
----tsconfig.json(541B)
----LICENSE.md(1KB)
----.gitignore(261B)
----README.md(2KB)
----scripts()
--------test()
----.prettierrc.json(114B)