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