0👍
Try this :
computed: {
filteredResources: (){
if (!this.searchString || this.searchString == '') return this.photos;
let regex = new RegExp(this.searchString, "i");
return this.photos.filter(photo => regex.test(photo.title));
}
}
- [Vuejs]-404 On All Links After Ruby On Rails & VueJS Project Deployment
- [Vuejs]-Input value that's binded with vue does not show up in the dom
Source:stackexchange.com