Skip to content

Commit

Permalink
fix: 修复reactive的代理缓存问题
Browse files Browse the repository at this point in the history
  • Loading branch information
TingShine committed Dec 20, 2022
1 parent e9c0288 commit 2ba6ef4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/reactive/reactive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ export function createReactiveObject (target) {
}

const proxy = new Proxy(target, baseHandlers)

console.log(proxy);
targetMap.set(target, proxy)

return proxy
}

0 comments on commit 2ba6ef4

Please sign in to comment.