blood1shot

Results 4 comments of blood1shot

@mreid21 solution works perfectly! Here is my code that uses css module ``` ... ```

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...