[Vuejs]-How ro render images from local assets in vue?

0👍

I solved this problem with function like this

const getImageUrl = (assetName) => {
  return new URL(`../../assets/${assetName}.png`, import.meta.url).href
}

This function translates url address for every image without the need to import each one.

Leave a comment