Created
June 19, 2018 00:12
-
-
Save hscstudio/6ade81764b8ff04ed222becb4e4e6c12 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const BookComponent = { | |
data () { | |
return { | |
classCard: 'card' | |
} | |
}, | |
props: [ 'book' ], | |
template : ` | |
<div :class="classCard"> | |
<h3>{{ book.title }}</h3> | |
<img :src="'images/books/'+book.image" style="width:100%"> | |
<p v-html="book.description"></p> | |
<button @click="$emit('selected', book.title)"> Select </button> | |
</div> | |
` | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment