In Au1 there was a hook called “propertyChanged()” to react to changes of bound properties.
export class MyComponent {
@bindable
prop1: string;
@bindable
prop2: string;
@bindable
prop3: string;
@bindable
prop4: string;
propertyChanged() {
// is called when any of the props changes
}
}
Is there something similar in Au2?