vue-carousel
vue-carousel copied to clipboard
scrollPerPage 'false' doesnt detect width well
Bug Report
Current Behavior I have an slide like this:
Each slide have similar width (270px) I set scrollPerPage to false to slide by item not per page but this is the result:
It detects 205.5px in transform effect
This is my code
<carousel :scroll-per-page="false" :pagination-enabled="false" :per-page="2">
<slide v-for="(item,index) in deals.results" :key="index">
<deal-list-item-small :deal="item" :user="item.user" />
</slide>
</carousel>
any updates?