23 lines
681 B
Vue
23 lines
681 B
Vue
<template>
|
|
<div class="flex flex-row gap-4">
|
|
<NuxtPicture
|
|
loading="lazy"
|
|
class="w-1/2 min-w-[50%] h-fit object-cover object-center"
|
|
:class="data?.image_left ? 'order-0' : 'order-1'"
|
|
:src="baseUrl + data?.image.url"
|
|
:imgAttrs="{ class: 'w-full h-fit object-cover object-center' }"
|
|
/>
|
|
<FieldContent :data="data?.text" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { PropType } from "vue";
|
|
import type DynamicZoneColumnImageText from "../../types/component/dynamicZoneColumnImageText";
|
|
|
|
const baseUrl = useStrapiUrl().replace("/api", "");
|
|
|
|
defineProps({
|
|
data: Object as PropType<DynamicZoneColumnImageText>,
|
|
});
|
|
</script>
|