[Vuejs]-How to bind an image to the image-section which is the response from backend in vue.js?

2👍

What’s format of you image file? if it’s a http link , try use src not url in img tag :

<img :src="book.file" />

1👍

<img v-bind:src="book.file" />

binding image link directly form data

Leave a comment