From b0984589f475f1f2f00786ea2bc30f25f4728b29 Mon Sep 17 00:00:00 2001 From: lhj <403133128@qq.com> Date: Sat, 9 Nov 2024 23:34:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=9B=B4=E6=96=B0IComponent=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/schemes/components/Link.json | 2 +- src/type/IComponent.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/schemes/components/Link.json b/src/schemes/components/Link.json index 7e577e2..cc7bf03 100644 --- a/src/schemes/components/Link.json +++ b/src/schemes/components/Link.json @@ -13,9 +13,9 @@ }, "style": "", "class": "", - "visible": true, "slots": {}, "disable": true, + "visible": true, "events": {}, "loop": {}, "children": [] diff --git a/src/type/IComponent.ts b/src/type/IComponent.ts index fcc4f8a..22b4c43 100644 --- a/src/type/IComponent.ts +++ b/src/type/IComponent.ts @@ -11,5 +11,7 @@ export interface IComponent { slots:IComponent[]; orchestrations:JSON; version:string; - loop:JSON + loop:JSON; + disable: boolean, + visible: boolean, } \ No newline at end of file