diff --git a/packages/core/src/componentProxy.ts b/packages/core/src/componentProxy.ts index 8b92fe17..e2387f8c 100644 --- a/packages/core/src/componentProxy.ts +++ b/packages/core/src/componentProxy.ts @@ -15,7 +15,7 @@ function getBoundMethod(fn: Function, target: any, receiver: any): Function { } const renderProxyHandlers = { - get(target: MountedComponent, key: string, receiver: any) { + get(target: MountedComponent, key: string, receiver: any) { if (key === '_self') { return target } else if ( @@ -50,7 +50,7 @@ const renderProxyHandlers = { } }, set( - target: MountedComponent, + target: MountedComponent, key: string, value: any, receiver: any