© 2026 Hedgehog Software, LLC
<script setup lang="ts"> ... const { data } = useExample() const photo = computed(() => getLogo(data.value?.name ?? "")) </script> <template> <NuxtImg :src="photo" class="h-10 w-10 sm:h-12 sm:w-12" placeholder="/logos/placeholder.png" /> </template>
src