Open
Description
Checks
- Not a duplicate.
- Not a question, feature request, or anything other than a bug report directly related to Vue Splide. Use Discussions for these topics: https://github.com/Splidejs/splide/discussions
Version
0.6.12
Description
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
With
data-splide-lazy="/assets/images/providers/someImg.png"
lazy-loading works fine
Reproduction Link
No response
Steps to Reproduce
- Use the code abouve with binding of image url's...
Expected Behaviour
Lazy loading should work with binded data-splide-lazy
attribute