The question is, there is a cycle in which we output everything we find in the array.
<v-text-field v-model="epgFilter"></v-text-field> //инпут ввода <div v-if="~program.title.toLowerCase().indexOf(epgFilter.toLowerCase()) || ~program.description.toLowerCase().indexOf(epgFilter.toLowerCase()) || ~program.date.startTime.toLowerCase().indexOf(epgFilter.toLowerCase())" v-for="program in filteredPrograms"> data () { return { channelsFilter: '', epgFilter:'', } }, computed: { filteredPrograms() { if(this.currentPrograms) { return this.currentPrograms.filter(program => { if(this.selectedProgramDay == program.date.day) { return program; } }) } } },
What to write for him v-else
in which there will be a message that nothing was found on the request.