diff --git a/packages/runtime-core/src/component.ts b/packages/runtime-core/src/component.ts index 1295b75936b..6e2c1d53d78 100644 --- a/packages/runtime-core/src/component.ts +++ b/packages/runtime-core/src/component.ts @@ -780,9 +780,6 @@ export function createSetupContext( // We use getters in dev in case libs like test-utils overwrite instance // properties (overwrites should not be done in prod) return Object.freeze({ - get props() { - return instance.props - }, get attrs() { return new Proxy(instance.attrs, attrHandlers) },