I have a list of users from an array. And I want to filter them based on the search box(name) at the top. I saw that there are filters in VueJS 1. But not available in VuesJS 2.
This method worked good for me
computed: { filteredList() { return this.postList.filter(post => { var vm = this; return post.title.toLowerCase().includes(vm.search.toLowerCase()) }) } }