Write angular13 by using ng-click directive to display an alert message after clicking the element.
app.component.html
<button (click)="showAlert()">Click Me</button>
app.componet.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'slip6';
showAlert()
{
alert("Button Clicked")
}
}
Comments
Post a Comment