Использование Tippy.js внутри компонента Angular
Я пытаюсь привязать всплывающие подсказки к некоторым элементам DOM в моем компоненте, используя Tippy.js.
Ниже мой пример голых костей test.component.ts
поскольку я не могу заставить это даже обнаружиться.
import ...
import { ViewChild, ElementRef } from @angular/core;
import tippy from 'tippy.js';
@Component({
selector: 'app-test',
template:
```
<div #testDiv>Hover over me.</div>
```,
styleUrls: []
})
export class TestComponent {
@ViewChild('testDiv') testDiv: ElementRef;
tippy(this.testDiv, { content: 'This is tooltip content.' })
}