Skip to content

Instantly share code, notes, and snippets.

@hscstudio
Created June 19, 2018 00:12
Show Gist options
  • Save hscstudio/6ade81764b8ff04ed222becb4e4e6c12 to your computer and use it in GitHub Desktop.
Save hscstudio/6ade81764b8ff04ed222becb4e4e6c12 to your computer and use it in GitHub Desktop.
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