可以用来为源响应式对象上的某个 property 新创建一个 ref。 然后,ref 可以被传递,它会保持对其源 property 的响应式连接。 当你要将 prop 的 ref 传递给复合函数时,toRef 很有用: export default { setup(props) { useSomeFeature(toRef(props, ‘foo’)) } } 即使源 property 不存在,toRef 也会返回一个可用的 ref。 这使得它在使用可选 prop 时特别有用,可选 prop 并不会被 toRefs 处理。 <script setup> import { reactive, toRef } from‘@vue/reactivity’ const dataList = reactive({ count:0, str:‘示例’ }) const count = toRef(dataList, ‘count’) const handleCountChange = () =>count.value++ </script> <template> <div v-text=”count“></div> <div v-text=”dataList.count“></div> <button @click=“handleCountChange“>Count</button> </template> <style> </style>