企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ## watchDeep ``` import { watchDeep } from '@vueuse/core' const nestedObject = ref({ foo: { bar: { deep: 5 } } }) watchDeep(nestedObject, (obj) => { console.log(updated) }) onMounted(() => { nestedObject.value.foo.bar.deep = 10 }) ```