接受一个内部值并返回一个响应式且可变的 ref 对象。ref 对象具有指向内部值的单个 property .value ref可以处理各种类型的数据 ref - 图1 <script setup> /* import { ref } from ‘vue’ const setupValue = ref(‘setup 示例内容1’) */ import { ref } from‘@vue/reactivity’ const count = ref(0) const arr = ref([1, 2]) const handleCountChange = () => { count.value++ } const handleArrChange = () => { // arr.value[0] = 10 // arr.value.push(1) // arr.value = [] arr.value.length = 0 } </script> <template> <divv-text=count/> <button @click=handleCountChange>Number</button> <divv-text=arr/> <button @click=handleArrChange>Array</button> </template> <style> </style>