将复杂属性与自定义组件一起使用?

时间:2017-01-31 05:33:20

标签: angular angular2-custom-component

如果我将复杂输入(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"])

使用组件()创建组件

0 个答案:

没有答案