Skip to content

Instantly share code, notes, and snippets.

@rexar1988
Last active July 30, 2020 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rexar1988/89ce8e40265f610bd025a4fc0d744910 to your computer and use it in GitHub Desktop.
Save rexar1988/89ce8e40265f610bd025a4fc0d744910 to your computer and use it in GitHub Desktop.
ViewContainerRef example
// Внедрение в компонент
// this.viewContainerRef это ссылка на HTML-шаблон компонента
constructor(private viewContainerRef: ViewContainerRef) { }
// Внедрение в директиву
// this.viewContainerRef это ссылка на HTML-элемент директивы,
// который можно получить с помощью свойства this.templateRef
constructor(private templateRef: TemplateRef<ElementRef>,
private viewContainerRef: ViewContainerRef) { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment