赞
踩
Vue3的响应式原理
实现原理
通过 Proxy(代理): 拦截对象中任意属性的变化, 包括:属性值的读写、属性的添加、属性的删除等。
Proxy
通过Reflect(反射): 对源对象的属性进行操作。
Re
flect