Results 3 comments of MrWangJustToDo

我可以抽空做一下 测试了一下可以支持

目前我的方案是用搜索接口去匹配, 好像没有其他的方法呢 如果是自己改名了那就麻烦了

https://github.com/MrWangJustToDo/r-store#pure-hook-api-for-reactive-state ```tsx import { useReactiveEffect, useReactiveState } from "reactivity-store"; export const usePosition = () => { const state = useReactiveState({ x: 0, y: 0 }); const xPosition = useReactiveState({ x:...