GithubHelp home page GithubHelp logo

Comments (3)

dbettin avatar dbettin commented on September 28, 2024

Agree. I need to be able to configure this behavior too.

from v-autocomplete.

gswcm avatar gswcm commented on September 28, 2024

I had similar issue but then, after trying a deluge of possible configurations it disappeared... I guess the big part of the solution was :auto-select-one-item="false" in component instantiation.

Just in case it may help to somebody I am pasting my configuration options here

<v-autocomplete
   :items="people"
   :v-model="person"
   :get-label="getLabel"
   :component-item="template"
   :auto-select-one-item="false" 
   @change="debouncer"
   :input-attrs="{
      class: 'form-control',
      placeholder: 'Start entering the name...'
   }"/>

I am using @change with lodash.debounce in place of @update-items for more control over timeout handling, but I don't think it is crucial. Here are all three methods for reference:

debouncer: debounce(function(e) {
   this.UpdateItems(e);
}, 500),
getLabel(item) {
   return item ? `${item.firstName} ${item.lastName}` : '';
},
async UpdateItems (text) {
   try {
      const { data } = await axios.get(`/api/directory/find?query=${text || '.'}`);
      this.people = data;
   }
   catch(error) {
      if(error.response && error.response.data) {
         console.error(error.response.data.message);
      }
      else {
         console.error(error.message);
      }
   }
},

In some other issue I saw that whatever property associated with v-model (in my case it is person) needs to be initialized as null (instead of {} or '')

from v-autocomplete.

pascalheraud avatar pascalheraud commented on September 28, 2024

We fixed the issue by returning the field value from getLabel when nothing is selected :

function getLabel(itemSelected) {
	if (itemSelected == null) {
		input = $el.querySelector("input");
		return input.value;
	}
	return itemSelected.label;
}

from v-autocomplete.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.