When I load images with
<img src="~/static/proyectos/rovix_1.png" width="100%"> is working ok.
But when I change to:
<img :src="image" width="100%">
being img="~/static/proyectos/rovix_1.png"
is not working.
What do I need to do for fixing it?
<img :src="image" width="100%">
image="/proyectos/rovix_1.png"
<img :src="image" width="100%">
image=require('~/assets/proyectos/rovix_1.png')
This could be fun too, in the sense that it would avoid busting cache if you reorganize your images and have file-loader name them strictly by content hash.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment