0

Im facing a problem using v-img from vuetify, this is my code example:



{{showPreviewUrl}} <!-- showPreviewUrl = "/getimage/imageuuid" path is loaded ok -->

<!-- my problem is here, image not loaded -->>
<v-img :src="showPreviewUrl" contain></v-img>  

<!-- image loaded OK -->>
<v-img src="https://picsum.photos/510/300?random" aspect-ratio="1.4" contain></v-img> 

<!-- image loaded OK -->>
<img :src="showPreviewUrl">

the src is an image, it loads on an "img" tag, but not on v-img

1 Answers1

0
<v-img :src="require(`@${showPreviewUrl}`)" contain></v-img>
jcoleau
  • 1,112
  • 7
  • 20