Update Carousel.vue

removed unused emptyMessage computed
pull/5432/head
Rodrigo Sanchez 2024-03-19 19:56:08 +11:00 committed by GitHub
parent e97f0eb05b
commit b907613e05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 3 deletions

View File

@ -613,9 +613,6 @@ export default {
empty() { empty() {
return !this.value || this.value.length === 0; return !this.value || this.value.length === 0;
}, },
emptyMessageText() {
return this.$primevue.config?.locale?.emptyMessage || '';
},
totalIndicators() { totalIndicators() {
return this.value ? Math.max(Math.ceil((this.value.length - this.d_numVisible) / this.d_numScroll) + 1, 0) : 0; return this.value ? Math.max(Math.ceil((this.value.length - this.d_numVisible) / this.d_numScroll) + 1, 0) : 0;
}, },