Created
June 26, 2018 09:08
-
-
Save YonathanMeguira/2f829e1ab1196706e7e88f7ca1ba68cc to your computer and use it in GitHub Desktop.
getter in html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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