Is is possible to pass the data into component? #50
Answered
by
NetanelBasal
conseak-cg
asked this question in
Q&A
-
Hi, Is it possible to pass the data into component which is used by [tippy]? I checked directive and seems there is no way to do so or am I wrong? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
NetanelBasal
Jun 8, 2021
Replies: 1 comment 1 reply
-
No. But we can add this by passing the data to the instance. A different way is to use inputs: <ng-template>
<comp [data]="data"></comp>
</ng-template> and pass the template to tippy instead. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
conseak-cg
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No. But we can add this by passing the data to the instance.
A different way is to use inputs:
and pass the template to tippy instead.