[Vuejs]-Vue-awesome-swiper / The button name is shared, so other swiper move as well

0👍

If you need unique names, try adding the unique key to the ref:

:ref="'mySwiper' + item.id"

Adding the colon (shortcut for v-bind) enables the use of item.id as a variable.

Leave a comment