vue3 watch reactive 元素
在Vue 3中,可以使用watch API来监听响应式元素的变化。 例如,如果有一个响应式元素count,可以使用以下代码来监听它的变化: import { watch, reactive } from 'vue' const state = reactive({ count: 0 }) watch(() => state.count, (newValue, oldValue) => { console.log(`count changed from ${oldValue} to ${newVa