Category "angular2-ngcontent"

Angular component ng-content passing template with dynamic output placeholders

Is it possible to have a component that can handle dynamic projection like this? <my-component [date]="2022-03-22"> <p>This date falls on a <

Angular2+ render a component without any wrapping tag at all

My child-component looks like: ... @Component({ selector: '[child-component]' templateUrl: './child.template.html' }) ... and my parent template like