Skip to content

setState(options)

设置共享状态值

options

参数名称类型必填可选值默认值描述
keystring--设置共享状态值的键(key)
valueany--

基础使用

vue
<template>
	<view>
		<!-- 显示:测试值 -->
		{{ucsShare.getState("test")}}
	</view>
</template>

<script setup>
	import ucsShare from "@/uni_modules/ucs-share"; 
	/**
	 * 示例设置共享状态键值
	 */
	ucsShare.setState("test", "测试值"); 
</script>