Last active
October 25, 2017 01:58
-
-
Save cgatian/f9b7ceafc1cb527112fa4c958b6233e3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Component({ | |
selector: 'my-app', | |
template: ` | |
<ng-template cdkPortal #testTemplate="cdkPortal" let-name> | |
<div>User {{ name }} </div> | |
</ng-template>`, | |
}) | |
export class AppComponent implements OnInit { | |
@ViewChild('testTemplate') testTemplatePortal: TemplatePortal<any>; | |
constructor() { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment