I'm working in a Vue application with Vuetify. I'm trying to add a v-tooltip around a v-list-tile-avatar element with an image in it like so:
<v-tooltip bottom>
<template v-slot:activator="{ on }">
<v-list-tile-avatar>
<img src="avatar.png">
</v-list-tile-avatar>
</template>
<span>Click to view.</span>
</v-tooltip>
But this seems to make the avatar image disappear.
Without the tooltip, I inspect the avatar element and I see this:
<div class="v-list__tile__avatar">
<div class="v-avatar">
<img src="avatar.png">
</div>
</div>
With the tooltip, I see this:
<span class="v-tooltip v-tooltip--bottom">
<span></span>
</span>
What's going on here?