I am trying to make a swipeable version of the vuetify list elements. I found the swiperjs.com library which does an awesome job in adding swiping capabilities for an html element. I also found this project https://github.com/davidgaroro/vuetify-swipeout which integrates the vuetify library and the swipeable library. Having read the content of the vuetify-swipeout project it looks like the trick is only in setting the right classes on the v-list-tile component, namely
<v-list-tile class="swiper-slide">
while surrounding the element with
<div :id="id" class="swiper-container">
<div class="swiper-wrapper">
...
</div>
</div>
The demo works pretty well on the github site.
However, here comes the trick, as v-list-tile is not supported anymore by the current version of vuetify, I replaced all the v-list-tile with v-list-item - which I expected to be equivalent - but it is not and all the v-list-items are translated to the left until you can't see them on the screen without swiping.
So instead of hiding the swappable content and showing the main content, the whole content it translated to the left making the tile unvisible to the screen.
I would greatly appreciate if you could lend me a hand to understand what I am doing wrong.
Thanks and regards,
Pat