We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d84ee39 commit e5ce102Copy full SHA for e5ce102
packages/carousel/src/item.vue
@@ -98,6 +98,7 @@
98
this.active = index === activeIndex;
99
const isVertical = parentDirection === 'vertical';
100
this.translate = this.calcTranslate(index, activeIndex, isVertical);
101
+ this.scale = 1;
102
}
103
this.ready = true;
104
},
packages/carousel/src/main.vue
@@ -159,6 +159,11 @@ export default {
159
160
loop() {
161
this.setActiveItem(this.activeIndex);
162
+ },
163
+
164
+ interval() {
165
+ this.pauseTimer();
166
+ this.startTimer();
167
168
169
0 commit comments