heyangzzz

Results 1 issues of heyangzzz

``` function defineReactive (obj, key, val, cb) { let val = val Object.defineProperty(obj, key, { enumerable: true, configurable: true, get: ()=>{ /*....依赖收集等....*/ /*Github:https://github.com/answershuto*/ return val }, set:newVal=> { val =...