我想要的是:
@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>