I need to bind data to HTML element i:
<i data-count="{{notificationsLength}}" class="fas fa-bell notification-icon" aria-label="Nofitication centre"></i>
I get error message: Can't bind to 'count' since it isn't a known property of 'i'.
Then I tried:
<i (data-count)="{{notificationsLength}}" class="fas fa-bell notification-icon" aria-label="Nofitication centre"></i>
but with the same result.
Thanks for help.