-2

I want to monitor the click of user in angular application, rather dont want to mannual configure for each click event, I want some thing at higher level that tells me each time where user clicked in application.

1 Answers1

0
@HostListener('click') onClick() 

might be just what you are looking for...

You can add it to your component and it will be called on each click event