[Vuejs]-Cannot show static image in assets on dynamic router-link

0👍

We store the images in /public/images , so if you store an image with file name myImage.png at images folder, you can do:

<v-img src="/images/myImage.png"/>

Leave a comment