5
                            
                                Version
                                    
                                
                            
                        2.7.14
Reproduction linkhttps://cn.vuejs.org/
Steps to reproduce const form = reactive({ name: '' }) // 事件触发 Reflect.deleteProperty(form, 'name') // 删除并不会触发 const existName = computed(() => Reflect.has(form, 'name') ) What is expected?希望能更新视图
What is actually happening?数据已经删除,并没有更新视图。与Vue3版本还是有差距