Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var BookComponent = {
  2.     data () {
  3.         return {
  4.             classCard: 'card'
  5. } },
  6.     props: [ 'title', 'description', 'image' ],
  7.     template : `
  8.         <div :class="classCard">
  9.             <h3>{{ title }}</h3>
  10.             <img :src="'images/books/'+image" style="width:100%">
  11.             <p v-html="description"></p>
  12. </div> `
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement