@fy-/fws-vue 2.3.20 → 2.3.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -623,24 +623,21 @@ onUnmounted(() => {
|
|
|
623
623
|
</template>
|
|
624
624
|
<template v-else>
|
|
625
625
|
<img
|
|
626
|
-
v-if="modelValueSrc"
|
|
626
|
+
v-if="modelValueSrc && imageComponent === 'img'"
|
|
627
627
|
class="shadow max-w-full gallery-image"
|
|
628
628
|
:src="modelValueSrc"
|
|
629
629
|
:alt="`Gallery image ${modelValue + 1}`"
|
|
630
630
|
@load="updateImageSizes"
|
|
631
631
|
>
|
|
632
|
-
|
|
632
|
+
<component
|
|
633
633
|
:is="imageComponent"
|
|
634
634
|
v-else-if="modelValueSrc && imageComponent"
|
|
635
|
+
|
|
636
|
+
class="shadow max-w-full gallery-image"
|
|
635
637
|
:image="modelValueSrc.image"
|
|
636
638
|
:variant="modelValueSrc.variant"
|
|
637
639
|
:alt="modelValueSrc.alt"
|
|
638
|
-
|
|
639
|
-
:likes="modelValueSrc.likes"
|
|
640
|
-
:show-likes="modelValueSrc.showLikes"
|
|
641
|
-
:is-author="modelValueSrc.isAuthor"
|
|
642
|
-
:user-uuid="modelValueSrc.userUUID"
|
|
643
|
-
/> -->
|
|
640
|
+
/>
|
|
644
641
|
</template>
|
|
645
642
|
</div>
|
|
646
643
|
</transition>
|