cosetta.vue 684 B

12345678910111213141516171819
  1. <script setup>
  2. const { cosetta } = defineProps({
  3. cosetta: {
  4. type: Object,
  5. required: true
  6. }
  7. })
  8. </script>
  9. <template>
  10. <div class="w-full md:w-1/3 xl:w-1/4 p-6 flex flex-col">
  11. <nuxt-link :to="`/c/${cosetta.name}`">
  12. <img class="hover:grow hover:shadow-lg" src="https://images.unsplash.com/photo-1555982105-d25af4182e4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&h=400&q=80">
  13. <div class="pt-3 flex items-center justify-between">
  14. <p class=" text-black font-bold uppercase" v-text='cosetta.name'></p>
  15. </div>
  16. <p class="pt-1 text-gray-700 text-sm" v-text='cosetta.description'></p>
  17. </nuxt-link>
  18. </div>
  19. </template>