I am using vue3, and would like to be able to render html in (bootstrap 5.3) tooltips.
However, vue3 escapes all html in v-bind attributes. Is it possible to disable this?
in template:
<td :title="mkTooltip(row, key)">some data</td>
if mkTooltip
returns some <b>html</b>
, this gets escaped. Is there any way to disable this behavior? I would really like to call a function to generate tooltips for table cells.