EN
Angular 7 - add simple onclick to button
11
points
Problem:
How to add onclick button from html template
to component in type script in angular 7?
Solution:
app.component.html
<button (click)="onClickMe()">Click btn</button>
app.component.ts
@Component({
templateUrl: './app.component.html',
})
export class AppComponent {
onClickMe() {
alert('Test click');
}
}
More complex examples:
https://angular.io/guide/user-input