[Vuejs]-Insert picture from a link in a json file

0👍

You need to bind the src tag like https://v2.vuejs.org/v2/guide/syntax.html#Attributes

:src="books.cover"

OR

v-bind:src="books.cover"

Also I would suggest using book as the object of books like

v-for="(book, index) in books"

Leave a comment