Suppose I have a component
@Component({
selector: 'mycomponent',
template: '...'
})
class MyComponent {
}
Normally it renders template under <mycomponnent></mycomponent>
, is there a way I could let this component render but by replacing the selector? I saw https://angular.io/docs/ts/latest/api/core/index/ComponentMetadata-class.html but not sure which configuration could lead to such behavior.