ref在响应式对象中的解包当一个 ref 被嵌套在一个响应式对象中,作为属性被访问或更改时,它会自动解包,因此会表现得和一般的属性一样:const count = ref<number>(0);const state = reactive({ count})state.count +=