diff --git a/components/lib/carousel/Carousel.vue b/components/lib/carousel/Carousel.vue index 8e09c7be0..858be2e50 100755 --- a/components/lib/carousel/Carousel.vue +++ b/components/lib/carousel/Carousel.vue @@ -613,9 +613,6 @@ export default { empty() { return !this.value || this.value.length === 0; }, - emptyMessageText() { - return this.$primevue.config?.locale?.emptyMessage || ''; - }, totalIndicators() { return this.value ? Math.max(Math.ceil((this.value.length - this.d_numVisible) / this.d_numScroll) + 1, 0) : 0; },