i am using a module (formKit) components accepts props to pass your text you want to write in, and my problem is how can i pass an HTML variable as string to props values same like:
from template this point >> :label="'Your name' + parseHTML(tooltip)"
<FormKit type="text" name="name" :label="'Your name' + parseHTML(tooltip)" help="What do people call you?" validation="required" :classes="inputTextStyle" />'
from script
const tooltip = ref("<div class='tooltip'>(?)</div>")
how can i make this variable parsing as HTML Element and the props value accept it with no problem