文件名称:visly-state:React实时应用程序的状态
文件大小:2.26MB
文件格式:ZIP
更新时间:2024-04-26 04:26:53
react nodejs javascript typescript state-management
· React实时应用程序的状态。 安装 无论您使用JavaScript还是TypeScript,Visly State都可以与React&Node.js一起使用。 使用npm安装它: npm install @visly/state 或纱线: yarn add @visly/state 创建您的第一个状态 此示例说明了如何存储全局应用程序状态,如何在UI中读取和显示它,以及最后如何更新状态。 当计数发生变化(通过调用useValue订阅)时,组件将自动重新呈现。 import { state , useValue , useMutation } from '@visly/state' const appState = state ( { count : 0 } ) function Component ( ) { const count = useValue ( ap