In Angular5,
I have the code like below.
<div (click)="abc()">
some content
<button (click)="xyz()">Click</button>
</div>
Whenever I click on button,the two methods are calling.But i want to call a single method.it belongs to button click.
How to handle it in Angular5
Thanks,