学习Vue3 第八章(认识to系列全家桶)
作者:互联网
toRef toRefs toRaw
toRef
如果原始对象是非响应式的就不会更新视图 数据是会变的
<template>
<div>
<button @click="change">按钮</button>
{{state}}
</div>
</template>
<script setup lang="ts">
import { reactive, toRef } from 'vue'
const obj = {
foo: 1,
bar: 1
}
const state = toRef(obj, 'bar')
// bar 转化为响应式对象
const change = () => {
state.value++
console.log(obj, state);
}
</script>
如果原始对象是响应式的是会更新视图并且改变数据的
toRefs
可以帮我们批量创建ref对象主要是方便我们解构使用
import { reactive, toRefs } from 'vue'
const obj = reactive({
foo: 1,
bar: 1
})
let { foo, bar } = toRefs(obj)
foo.value++
console.log(foo, bar);
toRaw
将响应式对象转化为普通对象
import { reactive, toRaw } from 'vue'
const obj = reactive({
foo: 1,
bar: 1
})
const state = toRaw(obj)
// 响应式对象转化为普通对象
const change = () => {
console.log(obj, state);
}
标签:bar,const,全家,第八章,reactive,state,Vue3,obj,foo 来源: https://blog.csdn.net/qq1195566313/article/details/122791665