您好,登錄后才能下訂單哦!
這篇“Vue3中的toRef和toRefs如何使用”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Vue3中的toRef和toRefs如何使用”文章吧。
toRef 顧名思義,不是ref 響應式數據,給它轉成ref 響應式數據
通俗易懂的理解:
<template> <h5>姓名:{{ person.name }}</h5> <h5>年齡:{{ person.age }}</h5> <h5>薪資:{{ person.job.j1.salary }}</h5> <button @click="person.name += '!'">修改姓名</button> <button @click="person.age++">增長年齡</button> <button @click="person.job.j1.salary++">漲薪</button> </template> <script> import { reactive } from "vue"; export default { setup() { let person = reactive({ name: "張三", age: 18, job: { j1: { salary: 20, }, }, }); return { person, }; }, }; </script> <style> </style>
首先實現功能沒問題,接下來考慮到代碼優化:
那可能會想到 我在return的時候,麻煩一些,
return { name: person.name, age: person.age, job: person.job.j1.salary, };
但是,這樣操作你會發現頁面不是響應式的,數據修改頁面不發生變化,如下:
接下來看 toRef的用法: 很明顯實現了效果
<template> <h5>姓名:{{ name }}</h5> <h5>年齡:{{ age }}</h5> <h5>薪資:{{ salary }}</h5> <button @click="name += '!'">修改姓名</button> <button @click="age++">增長年齡</button> <button @click="salary++">漲薪</button> </template> <script> import { reactive, toRef } from "vue"; export default { setup() { let person = reactive({ name: "張三", age: 18, job: { j1: { salary: 20, }, }, }); return { name: toRef(person, "name"), age: toRef(person, "age"), salary: toRef(person.job.j1, "salary"), }; }, }; </script> <style> </style>
介紹完toRef的用法之后,接下來來看一下toRefs的用法吧
以上就是關于“Vue3中的toRef和toRefs如何使用”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。