Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <template>
  2. <section>
  3. <b-card-group deck id="cars">
  4. <CarPreview
  5. v-for="car in cars"
  6. :id="car.id"
  7. :key="car.id"
  8. :title="car.title"
  9. :excerpt="car.previewText"
  10. :thumbnailImage="car.thumbnailUrl"
  11. :fuel="car.fuel"
  12. :gearbox="car.gearbox"
  13. :brand="car.brand"
  14. :model="car.model"
  15. :year="car.year"
  16. :miles="car.miles"
  17. />
  18. </b-card-group>
  19. </section>
  20. </template>
  21.  
  22. <template>
  23. <nuxt-link to="id">
  24. <!-- <article class="car-preview"> -->
  25. <b-card :title="title" :img-src="thumbnailImage" img-top>
  26. <b-card-text>
  27. {{ description }}
  28. <font-awesome-icon :icon="['fas', 'fa-car-alt']" />
  29. {{ brand }} {{ model }} - {{ year }}
  30. <br />
  31. <font-awesome-icon :icon="['fas', 'tint']" />Bränsle: {{ fuel }}
  32. <br />
  33. <font-awesome-icon :icon="['fas', 'cog']" />Växelåda: {{ gearbox }}
  34. <br />
  35. <font-awesome-icon :icon="['fas', 'tachometer-alt']" />
  36. Miltal: {{ miles }}
  37. </b-card-text>
  38. <div slot="footer">
  39. <small class="text-muted">Last updated 3 mins ago</small>
  40. </div>
  41. </b-card>
  42. </nuxt-link>
  43. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement