diff --git a/packages/runtime-core/src/internalObject.ts b/packages/runtime-core/src/internalObject.ts index 0c0c39bef6d..8b6ff1724f2 100644 --- a/packages/runtime-core/src/internalObject.ts +++ b/packages/runtime-core/src/internalObject.ts @@ -4,7 +4,7 @@ * `Object.getPrototypeOf`. This is more performant than defining a * non-enumerable property. (one of the optimizations done for ssr-benchmark) */ -const internalObjectProto = Object.create(null) +const internalObjectProto = {} export const createInternalObject = () => Object.create(internalObjectProto)