Hi,
suppose I have a simple checkbox in trame. How can I add a tooltip text when I hover over the box? I do not know how I can translate the explanation on the vuetify website into trame functionality.
The vuetify site gives for instance this example:
<v-tooltip text="Tooltip">
<template v-slot:activator="{ props }">
<v-btn v-bind="props">Tooltip</v-btn>
</template>
</v-tooltip>
and I have a simple checkbox like this:
vuetify.VCheckbox(
v_model=("list_change", True),
on_icon="mdi-account-check",
off_icon="mdi-account-check-outline",
classes="mx-1",
hide_details=True,
dense=True,
click=reset_resolution,
)
I have to add a v_tooltip and a v_bind?