Skip to content

Instantly share code, notes, and snippets.

@zzpzaf
Created November 9, 2021 10:18
Show Gist options
  • Save zzpzaf/ac4dc92c74021e449226d301db313f7f to your computer and use it in GitHub Desktop.
Save zzpzaf/ac4dc92c74021e449226d301db313f7f to your computer and use it in GitHub Desktop.
Angular Directive Selectors - Combinations of selectors – Chaining example 1
import { Directive } from '@angular/core';
@Directive({
selector: 'elem[myattr]'
})
export class MyDirective {
constructor() { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment