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"
Source:stackexchange.com