vue-search-select
vue-search-select copied to clipboard
A Vue.js search select component
With this feature, the options into a model-select can have custom template specified from the user using the slot, in order to add color to a specific part of the...
I'd like to do something like this: `@select="onSelect(item, otherParam)"` Thanks
``` options2: [ { value: '1', text: 'aa' + ' - ' + '1' }, { value: '2', text: 'ab' + ' - ' + '2' }, { value: '3',...
Pressing down key is behaving strangely, This causes a serious problem when there are a few hundred options in the dropdown. 
in my option-value = id, option-text = name, and i want to get other data from array. how to get index array
Hi we want to show some kind of loading indicator when we are getting the data from a ajax call. Some kind spinner of loading indicator. Thanks
MultiListSelect "inherits" from MultiSelect but only provides ``` props: { options: this.options, selectedOptions: this.items, isError: this.isError, isDisabled: this.isDisabled, placeholder: this.placeholder, filterPredicate: this.filterPredicate } ``` @see: https://github.com/moreta/vue-search-select/blob/master/src/components/lib/MultiListSelect.vue#L9 so its impossible to...
i'm trying to figure out how to use an endpoint data to populate the dropdown. i have the following code `mounted () { $.getJSON('/occupations/search-select', json => { this.occupations = json.data...
It is not possible to add some html code into an option. For example add color or underline a part of option.
Would like the ability to pass custom parameters to callback function so that we can share the same callback. Eg. ``` ``` ``` onSelect: function (item, id) { if (id...