Dynamic components
Π‘ΠΎΠ·Π΄Π°Π΅ΠΌ Anchor directive
// src/app/ad.directive.ts
import { Directive, ViewContainerRef } from '@angular/core';
@Directive({
selector: '[adHost]',
})
export class AdDirective {
constructor(public viewContainerRef: ViewContainerRef) { }
}Loading components
// src/app/ad-banner.component.ts
...
template: `
<ng-template adHost></ng-template>
`
...
Last updated