nuxt-swiper icon indicating copy to clipboard operation
nuxt-swiper copied to clipboard

The `space-between` attribute does not produce a gap properly when loading

Open lxccc812 opened this issue 1 year ago • 0 comments

Loading status: image

Status after loading is complete:: image

This property does not produce the correct interval when loading and defaults to 0? Temporary solution: Stop using space-between change into:

<template>
    <SwiperSlide class="my-swiper"></SwiperSlide>
</template>

<style scoped lang="scss">
.my-swiper {
    margin-right: 8px;

    :last-child {
        margin-right: 0;
    }
}
</style>

nuxt 3.7.4 nuxt-swiper 1.2.2

lxccc812 avatar Oct 23 '23 08:10 lxccc812