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) { diff --git a/doc/avatar/theming/TailwindDoc.vue b/doc/avatar/theming/TailwindDoc.vue index a882558f6..b63b338b9 100644 --- a/doc/avatar/theming/TailwindDoc.vue +++ b/doc/avatar/theming/TailwindDoc.vue @@ -50,7 +50,7 @@ export default {