item2.vue 544 B

12345678910111213141516171819
  1. <script lang='ts' setup>
  2. defineProps({
  3. item: Object as any,
  4. })
  5. </script>
  6. <template>
  7. <div>
  8. <img :src="item.thumbnailUrl" alt="" srcset="" class="w-352px b-rd-16px h-320px object-cover">
  9. <h3 class="text-20px fw-700 line-clamp-2 text-#363C40 lh-24px !my-20px custom-title-font">
  10. {{ item.title }}
  11. </h3>
  12. <NuxtLink class="cursor-pointer" :to="{ name: 'collections-name', params: { name: item.slug } }">
  13. <div class="underline text-#C58C64 text-14px">
  14. View All
  15. </div>
  16. </NuxtLink>
  17. </div>
  18. </template>