vue3修改reactive 值
时间: 2023-11-14 18:09:40 浏览: 194
hello-vue3.zip
要修改 reactive 值,可以使用 `ref` 函数将其转换为 ref 对象,然后通过 `.value` 属性来修改值。示例代码如下:
```javascript
import { reactive, ref } from 'vue'
const state = reactive({
count: 0
})
const countRef = ref(state.count)
// 修改 count 的值
countRef.value++
// 将修改后的值赋回 state.count
state.count = countRef.value
```
阅读全文