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.
`computed: { filteredResources(){ return this.Surveyors.filter((surveyor)=>{ return surveyor.Name.toLowerCase().match(this.searchQuery.toLowerCase()); }) } }`
/Surveyors is data table name and surveyor is its index like in your example you are having customer in customers/