Create a local variable in your component (suppose using typescript if Angular 2 +):
myValue: string;
Then you control this variable in other ways. And then you call your onResetDefault () method in your component, which looks like this:
onResetDefault(): void {
myValue = 'Default';
}
, , , .
(.html), , , - , :
my value is: {{ myValue }}