I would like to dynamically build selector or call component in the template with a property. Like in this plunker.
Example :
<!-- What I want to do -->
<frame-{{type}}></frame-{{type}}>
<!-- Or -->
<frame [type]="{{type}}"></frame>
Is there a workaround for this or is it not possible with angular2 ?