[Vuejs]-Create a search bar jsvue from json object

0👍

You don’t have item declared in your data. you can’t call this.item.filter in your filteredList() method when you don’t have it declared.

You can change your filteredList with this.itemList.filter() which is the list being loaded in loaddata()

Leave a comment