We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e6e903 commit ba881f9Copy full SHA for ba881f9
packages/runtime-core/src/component.ts
@@ -549,7 +549,7 @@ function setupStatefulComponent(
549
}
550
551
// 0. create render proxy property access cache
552
- instance.accessCache = {}
+ instance.accessCache = Object.create(null)
553
// 1. create public instance / render proxy
554
// also mark it raw so it's never observed
555
instance.proxy = new Proxy(instance.ctx, PublicInstanceProxyHandlers)
0 commit comments