'Making v-select searchable in vue js does not stop searching and does not return a result

the v-select is embedded in this component dynamic UI select. But when the searchable prop is added it does not stop searching and does not bring out the searched item

           <div class="col-md-4" v-if="state">
                  <label class="control-label">LGA</label>
                  <dynamic-ui-select
                          :url="lga_url"
                          v-model="lga"
                          :show-all-option="false"
                          :key="lga_select_key"
                          searchable
                  >
                    <template v-slot:option="option">
                    </template>
                  </dynamic-ui-select>
                </div>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source