|
Answer» 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
|