Guest User

Untitled

a guest
Jun 25th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. computed: {
  2. countriesResults() {
  3. // Filter results
  4. return this.countries.filter((country) => {
  5. return country.name.toLowerCase()
  6. .indexOf(this.search.toLowerCase()) > -1;
  7. });
  8. }
  9. }
Add Comment
Please, Sign In to add comment