Results 1 issues of danel996

**版本号 (version)** @form-create/[email protected] **问题描述 (Issue)** 参考 #72 中的代码 ` return maker.input('商品价格', 'price', '100').children([maker.create('span').slot('append').children(['元'])]); ` 上述代码在ts中会报类型错误: > 不能将类型“Creator”分配给类型“string | RuleChildren”。 **复现步骤** **文件:**@form-create\core\types\index.d.ts第308行 **问题:** BaseCreateor.children()参数类型声明错误 ` children(prop: Array): this; ` // 为了简化描述,...