Skip to content

Instantly share code, notes, and snippets.

@maestrow
Last active January 17, 2018 19:21
Show Gist options
  • Save maestrow/231f902d56ab0e760c3d24935eb3cf7a to your computer and use it in GitHub Desktop.
Save maestrow/231f902d56ab0e760c3d24935eb3cf7a to your computer and use it in GitHub Desktop.
Angular

Что означает звездочка, квадраттные скобки и круглые скобки в директивах angular? <input [(ngModel)]="hero.name" placeholder="name"> <li *ngFor="..." (click)="...">

The parentheses around click tell Angular to listen for the

  • element's click event.

    [class.selected]="hero === selectedHero"

  • Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment