Skip to content
Advertisement

How to use source images dynamically in :src in Vuejs

I’ve tried everything I found on Google, none of they worked for me.

Basically, what I’m trying to do is passing an object through a v-for to another component like that:

JavaScript

This representante variable is the object i’m passing. It has a imagem property that contains the name of the image I need.

IMPORTANT: the images are in the public folder because I thought it would work, but it hasn’t.

Inside the component script, here’s what I have:

JavaScript

That basically initializes the foto property in data(), so I can use in the <img> tag.

JavaScript

But it simply doesn’t work, neither with the image on the public folder nor the src/assets/ folder. Only the alt is displayed. I’ve tried using require() too, but it doesn’t work like that, or I didn’t know how to use.

I can’t find any information on the internet of why Vue isn’t able to find my images.

By the way, thats the error I get:

JavaScript

Thanks any help.

Advertisement

Answer

My solution was to add the images on a remote repository so I could get the URLs and use them, that worked. But I still think my problem is very weird behavior of Vue.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement