[Vuejs]-Vue js image not showing for image path problem

0👍

You can use absolute path, works anywhere (I mean, no matter what current path is).

<img :src="'/' + data.image" class="img-fluid"/>

Leave a comment