Creating custom directives
In this lesson, we will look at creating custom attribute directives as per our requirements.
You might have used *ngIf
, *ngFor
by now in your Angular applications. These are the built-in directives that are provided to us by the Angular team. We’ll see ...