其他分享
首页 > 其他分享> > react17/vue3对比

react17/vue3对比

作者:互联网

创建响应式数据

react:useState
vue:ref/reactive
区别:
useState

const testState = useState(false)
const test = testState[0]
const setTest = testState[1]

返回一个数组,可使用数组解构赋值

const [test,setTest] = useState(false)

ref/reactive

const test = ref(false)//基本类型
const test2 = reactive({count:10})//引用类型

返回一个响应式代理对象

标签:const,reactive,useState,vue3,test,false,react17,ref,对比
来源: https://www.cnblogs.com/ttppl/p/15698990.html