I am using the example from the Vuetify documentation for the tooltip into my app, but the tooltip doesn't appear when you hover over the specified element:
<v-tooltip bottom>
<template v-slot:activator="{ on }">
<span v-on="on">This text has a tooltip</span>
</template>
<span>Tooltip</span>
</v-tooltip>
I added VTooltip into the declaration of the component:
import { VTooltip } from 'vuetify/lib';
components: {
VTooltip
}
I am using these versions of Vue and Vuetify:
"vue": "^2.6.10",
"vuetify": "^2.0.0-beta.0"
There are no errors into the browser's console. Can someone please advise what am I doing wrong? Should the syntax be different? Thanks!