blood1shot
blood1shot
same
@mreid21 solution works perfectly! Here is my code that uses css module ``` ... ```
Also reproduced without SSR
I found some workaround for this issue. Here my Carousel component usage: ``` Carousel( ref="carousel", @init="handleInit", :items-to-show="3", :wrap-around="isEnabledWrapAround", :mouse-drag="false", :touch-drag="false", :transition="transitionValue", v-model="selectedIndexModel" ) ... const isEnabledWrapAround = ref(false); const transitionValue...