Card.vue 418 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="card">
  3. <header>
  4. <h1>{{ item.title }}</h1>
  5. <h4>{{ item.description }}</h4>
  6. </header>
  7. <section class=images>
  8. <img class="images" v-for="img in item.images" :src="img.url" :title="img.title"/>
  9. </section>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. name: "Card",
  15. props: ['item'],
  16. data: () => ({
  17. })
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. </style>