test:1.组件嵌套拖拽

2.schema定义与动态绑定
This commit is contained in:
lhj
2024-08-01 01:06:00 +08:00
parent 0c148a6401
commit 309e045720
13 changed files with 824 additions and 457 deletions

10
src/type/IList.ts Normal file
View File

@ -0,0 +1,10 @@
export interface IList {
type: string;
name: string;
id: string;
designer: JSON;
props: JSON;
style: string;
class: string;
children: IList[];
}