如果我将复杂输入(prop.childprop)作为字符串传递错误"无法读取属性'属性'未定义"
export function NewComponent(name:string, componentArgs: {
selector: string,
inputs: Array<string>
}): Type<any> {
var comp = Component(componentArgs);
return comp.Class({
})
}
按照以下方式创建组件时出现错误&#34;无法读取属性&#39;属性&#39;未定义&#34;
NewComponent(selector:'mycom',inputs:["prop","prop.childprop"])
使用组件()创建组件