We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0.6.12
When i use dynamic images in Vue 3 / Vite project
<Splide :options="spliderOptions" aria-label="Providers"> <SplideSlide v-for="provider in casinoStore.providers.value" :key="provider.id"> <div class="provider" :title="provider.name" @click="filterByProvider(provider)"> <img :data-splide-lazy="`/assets/images/providers/${provider.slug}.png`" class="image" > </div> </SplideSlide> </Splide>
all data-splide-lazy attributes are converted to src on the mount
data-splide-lazy
src
With
data-splide-lazy="/assets/images/providers/someImg.png"
lazy-loading works fine
No response
Lazy loading should work with binded data-splide-lazy attribute
The text was updated successfully, but these errors were encountered:
same here....
Sorry, something went wrong.
I think this bug is important, because causes to forze the browser to load ALL big images of the gallery at same time.
No branches or pull requests
Checks
Version
0.6.12
Description
When i use dynamic images in Vue 3 / Vite project
all
data-splide-lazy
attributes are converted tosrc
on the mountWith
data-splide-lazy="/assets/images/providers/someImg.png"
lazy-loading works fine
Reproduction Link
No response
Steps to Reproduce
Expected Behaviour
Lazy loading should work with binded
data-splide-lazy
attributeThe text was updated successfully, but these errors were encountered: