如何在角度组件的模板中绑定组件名称?

时间:2017-03-31 08:32:57

标签: angular

我想要的是:

@Component({
    selector: "test",
    template: `<{{componentName}}></{{componentName}}>`,
})
export class NodeComponent {
    @Input()
    componentName: string; // the html tag name or custom component name or custom component class
}

我知道上面的代码不起作用,如果有效:

<test componentName="button"></test>

将呈现为:

<button></button>

0 个答案:

没有答案