We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b49540a commit 2c39273Copy full SHA for 2c39273
components/vc-slick/inner-slider.jsx
@@ -51,6 +51,15 @@ export default {
51
};
52
},
53
watch: {
54
+ autoplay(newValue, oldValue) {
55
+ if (!oldValue && newValue) {
56
+ this.handleAutoPlay('playing');
57
+ } else if (newValue) {
58
+ this.handleAutoPlay('update');
59
+ } else {
60
+ this.pause('paused');
61
+ }
62
+ },
63
__propsSymbol__() {
64
const nextProps = this.$props;
65
const spec = {
0 commit comments