@fy-/fws-vue 0.3.56 → 0.3.57
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.
|
@@ -313,6 +313,7 @@ onUnmounted(() => {
|
|
|
313
313
|
/>
|
|
314
314
|
<component
|
|
315
315
|
v-else
|
|
316
|
+
@click="$eventBus.emit(`${id}GalleryImage`, i - 1)"
|
|
316
317
|
:is="imageComponent"
|
|
317
318
|
:image="getThumbnailUrl(images[i - 1]).image"
|
|
318
319
|
:variant="getThumbnailUrl(images[i - 1]).variant"
|
|
@@ -357,6 +358,7 @@ onUnmounted(() => {
|
|
|
357
358
|
:variant="getThumbnailUrl(images[i + j - 2]).variant"
|
|
358
359
|
:alt="getThumbnailUrl(images[i + j - 2]).alt"
|
|
359
360
|
class="h-auto max-w-full rounded-lg cursor-pointer"
|
|
361
|
+
@click="$eventBus.emit(`${id}GalleryImage`, i + j - 2)"
|
|
360
362
|
/>
|
|
361
363
|
</div>
|
|
362
364
|
</template>
|
|
@@ -376,6 +378,7 @@ onUnmounted(() => {
|
|
|
376
378
|
:variant="getThumbnailUrl(images[i - 1]).variant"
|
|
377
379
|
:alt="getThumbnailUrl(images[i - 1]).alt"
|
|
378
380
|
class="h-auto max-w-full rounded-lg cursor-pointer"
|
|
381
|
+
@click="$eventBus.emit(`${id}GalleryImage`, i - 1)"
|
|
379
382
|
/>
|
|
380
383
|
</div>
|
|
381
384
|
</template>
|