Ember アプリケーションを Angular 2 に移植しようとしていますが、Angular 2 で作成する方法がわかりませんでした
Computed Properties--Properties observing other properties for changes and the reacting
。
[(myVar)] && onMyVarChange= new EventMitter();
それ自身と反応への変化を観察します。
ヘルプ/指示は素晴らしいでしょう。
アップデート :
@Nazim からの回答を使用して解決しました typescript プロパティを使用しました
TS (コンポーネント.ts)
private _isValid: boolean;
public get isValid(): boolean {
return this._isValid;
}
public set isValid(v: boolean) {
this._isValid = v;
}
// A read only property
private _show: boolean;
public get show(): boolean {
return this._isValid;
}
テンプレート (component.html)
<h2 *ngIf="show">Show Me</h2>