diff --git a/components/lib/carousel/Carousel.vue b/components/lib/carousel/Carousel.vue index cd189b170..0a8f782c5 100755 --- a/components/lib/carousel/Carousel.vue +++ b/components/lib/carousel/Carousel.vue @@ -126,6 +126,12 @@ export default { }, watch: { page(newValue) { + if (newValue > this.d_page) { + this.navForward({}, newValue); + } else if (newValue < this.d_page) { + this.navBackward({}, newValue); + } + this.d_page = newValue; }, circular(newValue) {