Currently, I am working on an Angular project and successfully implemented tippy.js, which you can find working perfectly at this link: .
However, the issue arises when I attempt to populate the tooltips with JSON data using Angular's interpolation. Upon doing so, I encounter the following error message: "Can't bind to 'tippy-content' since it isn't a known property of 'div'."
<div data-tippy-content="{{top.description}}" data-tippy-placement="right" class="layout-tops-photos theme-tops-photos theme-hover js-tippy"></div>
Is there a method to integrate interpolation for this purpose? If not, what alternative approach should I consider?