This file contains 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
import { Component, EventEmitter, Output } from '@angular/core'; | |
@Component({ | |
selector: 'app-child', | |
template: `<button class='btn btn-primary' (click)="valueChanged()">Click me</button> ` | |
}) | |
export class AppChildComponent { | |
@Output() valueChange = new EventEmitter(); | |
Counter = 0; | |
valueChanged() { // You can give any function name | |
this.counter = this.counter + 1; | |
this.valueChange.emit(this.counter); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment