Skip to content

Instantly share code, notes, and snippets.

@matheusmurta
Created February 10, 2020 16:30
Show Gist options
  • Save matheusmurta/d7cf87cab7dedee3a2699cf5f35fe0e6 to your computer and use it in GitHub Desktop.
Save matheusmurta/d7cf87cab7dedee3a2699cf5f35fe0e6 to your computer and use it in GitHub Desktop.
Angular send ng-template to component
//your component
<div *ngTemplateOutlet="template"></div>
@Input() template :TemplateRef<any>;
//your module
<ng-template #loading>
<div>Loading...2</div>
</ng-template>
<my comp>...[template]="loading">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment