New:
- Support for
v-modelbased on Form-Input-Components-using-Custom-Events CustomLabelfunction can be applied to both primitives and objectsLocalSearchprop, to enable local filtering. Disabling it might be useful if you have async search. Default istrue.
Breaking changes:
- Instead of
Vue.partialfor custom option templates you can use a custom render function. - The
:keyprop has changed to:track-by, due to conflicts with Vue 2.0. @updatehas changed to@inputto also work with v-model:selectedhas changed to:valuefor the same reason
If your @update handler was only assigning the new value to the model, like for example:
onChange (newVal) {
this.selected = newVal
}you can safely change it to just v-model="selected".