Suggestion List Input with Vue
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 },`
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by initmn and has received 1 comments.