[Vuejs]-How can I prevent this from running on my screen reader when input is empty?

0πŸ‘

βœ…

It should be v-if="filterCities.length > 0" with an equal.

   <span class="sr-only" v-if="filterCities.length > 0" :aria-label=" 'Showing '+filterCities.length + ' results'"></span>

Leave a comment