In a table of users I want to show avatar in a second column. The problem is that rows are too small so the image is not shown whole.
Table:
<v-data-table :headers="tableHeaders" :items="streamers">
<template v-slot:item.avatar="{ }">
<v-img :max-height="100" aspect-ratio="1" :src="'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRubQH1F3DZWpm3WYs5SKpQBSH_ocCYenGjkA&usqp=CAU'"/>
</template>
</v-data-table>
How to make that the whole image is visible?
Add contain prop to v-img. Reference to Vuetify docs.