您的位置:首页 > 房产 > 建筑 > 价格低廉_企业做网络推广有什么好处_免费推广的平台都有哪些_软文大全500篇

价格低廉_企业做网络推广有什么好处_免费推广的平台都有哪些_软文大全500篇

2024/12/23 3:21:47 来源:https://blog.csdn.net/qq_58341172/article/details/142876682  浏览:    关键词:价格低廉_企业做网络推广有什么好处_免费推广的平台都有哪些_软文大全500篇
价格低廉_企业做网络推广有什么好处_免费推广的平台都有哪些_软文大全500篇

首先画出模板

<template><div class="person"><h2>姓名:{{ person.name }}</h2><h2>年龄:{{ person.age }}</h2><button @click="showTel">查看联系方式</button><button @click="changeName">修改名字</button><button @click="chanegAge">修改年龄</button></div></template>

定义响应式对象

<script lang="ts" setup name="PersonToRefs">
import { ref, reactive,toRefs } from 'vue'const person = reactive({name: "zhangsan",age: 18,tel :123456789
})// 现在将数据进行解析出来
// const {name,age} = person //此时的name,age并不是响应式的
const {name,age} = toRefs(person) //此时的name,age是响应式的,但是其值是响应式的,但是其值是结构成ref(响应式)对象的数据function changeName(){person.name = person.name + '~'console.log("name",name.value);console.log("person.name",person.name);
}function chanegAge(){person.age = person.age + 1console.log("age",age.value);console.log("person.age",person.age);
}function showTel(){alert(person.tel)
}</script>

样式:

<style scoped>
.person {background-color: skyblue;box-shadow: 0 0 10px;border-radius: 10px;padding: 20px
}
</style>

小结:

当我们使用,reactive定义响应式对象的时候,使用let{name,age} = person 解析对象后,

其name,age并不是响应式的,因此我们需要使用,toRefs属性,将其转化为响应式的

并且,使用toRefs转化后的name,age其变成了,与person相关联的Ref响应式数据

当只需要某个对象的单个属性的时候,可以使用toRef

const roRefName = toRef(person,'name')console.log(roRefName.value);

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com