Skip to content

Instantly share code, notes, and snippets.

@zzpzaf
Created November 9, 2021 09:43
Show Gist options
  • Save zzpzaf/e7d1cfcbdcd6d1c4b5459aa48990a090 to your computer and use it in GitHub Desktop.
Save zzpzaf/e7d1cfcbdcd6d1c4b5459aa48990a090 to your computer and use it in GitHub Desktop.
Angular Directive selectors - Element Selector example
import { Directive } from '@angular/core';
@Directive({
selector: 'elem'
})
export class MyDirective {
constructor() { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment