| |
|
Define the ng-content Directive Question Posted on 15 Jan 2020 Home >> Angular >> Angular FAQ >> Define the ng-content Directive |
Define the ng content Directive
In Conventional HTML elements wher we have some content between the tags. To under stand this we take below 2 example:-
(1)< p>Here you get all question on cracyourinterview.com< /p>
(2)< h1>Here you will get cracyourinterview< /p>
Now we will consider the following example of having custom text between angular tags as per below eample:-
< app-work>This have question in crackyourinterview.com < /app-work>
But all these will not work in angular so in place of this we need to use the ng-content Directive. Moreover, it is helpful in building reusable components.
We use this tag as a placeholder for that dynamic content, then when the template is parsed Angular will replace that placeholder tag with your content | |
|
|
|
|