2020
09-29
09-29
40行代码把Vue3的响应式集成进React做状态管理
前言vue-next是Vue3的源码仓库,Vue3采用lerna做package的划分,而响应式能力@vue/reactivity被划分到了单独的一个package中。如果我们想把它集成到React中,可行吗?来试一试吧。使用示例话不多说,先看看怎么用的解解馋吧。//store.tsimport{reactive,computed,effect}from'@vue/reactivity';exportconststate=reactive({count:0,});constplusOne=computed(()=>state.count+1);effect(()=>{console.log(...
继续阅读 >