一、ref 函数将简单类型的数据包装为响应式数据
import { ref } from 'vue'
const count = ref(10)
一、reactive函数将复杂类型的数据包装为响应式数据
import { reactive} from 'vue'
const obj= reactive({
name : 'zs',
age : 18
})
一、ref 函数将简单类型的数据包装为响应式数据
import { ref } from 'vue'
const count = ref(10)
一、reactive函数将复杂类型的数据包装为响应式数据
import { reactive} from 'vue'
const obj= reactive({
name : 'zs',
age : 18
})