localforage超大存储
2023-06-02 19:48:21
2025-01-18 13:27:32
安装
shell
pnpm add -S localforage
方法封装
js
localforage.config({
name: "mj-opreation-vue", // 项目名,即数据表名字
});
// 查
localforage.getItem(key);
// 增 | 改
localforage.setItem(key, value);
// 删
localforage.removeItem(key);
目录