@@ -169,7 +169,7 @@ For the `NcSelect` component, all events will be passed through. Please see the
169169 class =" action-input__datetimepicker"
170170 appendToBody
171171 v-bind =" $attrs"
172- @update:model-value =" onUpdateModelValue" />
172+ @update:modelValue =" onUpdateModelValue" />
173173
174174 <NcDateTimePickerNative
175175 v-else-if =" isNativePicker"
@@ -180,7 +180,7 @@ For the `NcSelect` component, all events will be passed through. Please see the
180180 :inputClass =" { focusable: isFocusable }"
181181 class =" action-input__datetimepicker"
182182 v-bind =" $attrs"
183- @update:model-value =" onUpdateModelValue" />
183+ @update:modelValue =" onUpdateModelValue" />
184184
185185 <NcSelect
186186 v-else-if =" isMultiselectType"
@@ -191,7 +191,7 @@ For the `NcSelect` component, all events will be passed through. Please see the
191191 :inputClass =" { focusable: isFocusable }"
192192 class =" action-input__multi"
193193 v-bind =" $attrs"
194- @update:model-value =" onUpdateModelValue" />
194+ @update:modelValue =" onUpdateModelValue" />
195195
196196 <NcPasswordField
197197 v-else-if =" type === 'password'"
@@ -204,7 +204,7 @@ For the `NcSelect` component, all events will be passed through. Please see the
204204 :inputClass =" { focusable: isFocusable }"
205205 :showTrailingButton =" showTrailingButton && !disabled"
206206 v-bind =" $attrs"
207- @update:model-value =" onUpdateModelValue" />
207+ @update:modelValue =" onUpdateModelValue" />
208208
209209 <div v-else-if =" type === 'color'" class =" action-input__container" >
210210 <label
@@ -220,7 +220,7 @@ For the `NcSelect` component, all events will be passed through. Please see the
220220 :modelValue =" modelValue"
221221 class =" colorpicker__trigger"
222222 v-bind =" $attrs"
223- @update:model-value =" onUpdateModelValue"
223+ @update:modelValue =" onUpdateModelValue"
224224 @submit =" $refs.form.requestSubmit()" >
225225 <button
226226 class =" colorpicker__preview"
@@ -244,8 +244,8 @@ For the `NcSelect` component, all events will be passed through. Please see the
244244 :trailingButtonLabel =" trailingButtonLabel"
245245 :showTrailingButton =" showTrailingButton && !disabled"
246246 v-bind =" $attrs"
247- @trailing-button-click =" $refs.form.requestSubmit()"
248- @update:model-value =" onUpdateModelValue" />
247+ @trailingButtonClick =" $refs.form.requestSubmit()"
248+ @update:modelValue =" onUpdateModelValue" />
249249 </div >
250250 </div >
251251 </form >
0 commit comments