diff --git a/src/components/VueBootstrapTypeaheadList.vue b/src/components/VueBootstrapTypeaheadList.vue index f404987..81fd46c 100644 --- a/src/components/VueBootstrapTypeaheadList.vue +++ b/src/components/VueBootstrapTypeaheadList.vue @@ -77,6 +77,11 @@ export default { }, matchedItems() { + + if(this.minMatchingChars === 0){ + return this.data; + } + if (this.query.length === 0 || this.query.length < this.minMatchingChars) { return [] }