Vuetify: 2.0.0-beta.4
Vue: 2.6.9
Browsers: Safari 12.1.1
OS: Mac OS 10.14.5
As this code shows, I want to place a badge on the top of the avatar.
<v-list-item-avatar>
<v-badge
color="purple"
overlap
right
>
<template v-slot:badge>
<span v-if="item.messages > 0">{{ item.messages }}</span>
</template>
<v-img :src="item.avatar"></v-img>
</v-badge>
</v-list-item-avatar>
I want to place a badge on the top of the avatar.
The badge doesn't show, and the avatar become a larger icon.
Meanwhile better
<v-list-item-avatar>
<v-badge
color="purple"
overlap
right
>
<template v-slot:badge>
<span v-if="item.messages > 0">{{ item.messages }}</span>
</template>
<v-avatar size="36">
<v-img :src="item.avatar"></v-img>
</v-avatar>
</v-badge>
</v-list-item-avatar>
@Billybob It works, well done, thanks.
Most helpful comment
Meanwhile better