npm vue-select 1.1.3
v1.1.3

latest releases: 3.20.3, 3.20.2, 3.20.1...
7 years ago

New

Introduced getOptionalLabel prop. This prop accepts a callback function, allowing you to modify your option labels, without needing to modify your data sources. The callback should return a string that will be used as the options label. This is a good place to leverage ES6 template strings:

<v-select :get-option-label="formatLabel"></v-select>
formatLabel(option) {
   return `${option.date} - ${option.title}`  
}

Don't miss a new vue-select release

NewReleases is sending notifications on new releases.