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})//引用类型

返回一个响应式代理对象

上一篇:ASCIALL字符


下一篇:vue3基础