Skip to content

Instantly share code, notes, and snippets.

@YonathanMeguira
Created June 26, 2018 09:08
Show Gist options
  • Save YonathanMeguira/2f829e1ab1196706e7e88f7ca1ba68cc to your computer and use it in GitHub Desktop.
Save YonathanMeguira/2f829e1ab1196706e7e88f7ca1ba68cc to your computer and use it in GitHub Desktop.
getter in html
@Component({
selector: "ym-component",
template: `<div *ngIf="hasForm"></div>`,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class MyComponent {
form: any;
get hasForm(): boolean {
return this.form != null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment