setState(options)
设置共享状态值
options
参数名称 | 类型 | 必填 | 可选值 | 默认值 | 描述 |
---|---|---|---|---|---|
key | string | 是 | - | - | 设置共享状态值的键(key) |
value | any | 是 | - | - | 值 |
基础使用
vue
<template>
<view>
<!-- 显示:测试值 -->
{{ucsShare.getState("test")}}
</view>
</template>
<script setup>
import ucsShare from "@/uni_modules/ucs-share";
/**
* 示例设置共享状态键值
*/
ucsShare.setState("test", "测试值");
</script>