From 2acc70a4226ce81ae5f7321e6c1c0e768103694d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8A=9B=E7=9A=93?= Date: Tue, 25 May 2021 15:20:43 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=BF=98=E6=98=AF=E5=B0=86=20dropLocati?= =?UTF-8?q?on=20=E8=AE=BE=E4=B8=BA=E9=9D=9E=E5=93=8D=E5=BA=94=E5=BC=8F?= =?UTF-8?q?=E5=8F=98=E9=87=8F,=20=E5=9F=BA=E4=BA=8E=E6=80=A7=E8=83=BD?= =?UTF-8?q?=E8=80=83=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/designer/src/designer/designer.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/designer/src/designer/designer.ts b/packages/designer/src/designer/designer.ts index e61b038bd..3ecde7eab 100644 --- a/packages/designer/src/designer/designer.ts +++ b/packages/designer/src/designer/designer.ts @@ -231,9 +231,9 @@ export class Designer { this.editor.emit(`designer.${event}`, ...args); } - @obx.ref private _dropLocation?: DropLocation; + private _dropLocation?: DropLocation; - @computed get dropLocation() { + dropLocation() { return this._dropLocation; }