Fix typo in documentation
nasirDoe opened this issue · 1 comments
nasirDoe commented
Missing this
inputChange (text) { // your search method this.items = items.filter(item => item.name.contains(text)); // now
items will be showed in the suggestion list },
Must be:
inputChange (text) { // your search method this.items = this.items.filter(item => item.name.contains(text)); // now
items will be showed in the suggestion list },
iamstevendao commented
Thank you!