dashboard.component.ts
myFunction(){
console.log("test");
}
dashboard.component.html
<img [src]="team.logo" onclick="myFunction()" alt="img">
Whenever the image is clicked, error appears in console saying "Reference error: myFunction is not defined". I have tried using ng-click aswell but no luck.
You need to do the following,
In your dashboard.component.html file,
<img [src]="team.logo" (click)="myFunction()">
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With