Skip to content

引入

js
import { storeSet } from "grantlibs";
或;
const { storeSet } = require("grantlibs");
设置临时存储

使用

ts

storeSet(key: any, val: any)

参数

  • key: any
  • val: any

返回

示例

js
storeSet("name", "store");
// => 'store'