mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-26 09:50:33 +01:00
feat(forms): allow null as initial value (#2275)
Co-authored-by: Romain Hamel <rom.hml@gmail.com>
This commit is contained in:
@@ -56,7 +56,7 @@ export default defineComponent({
|
||||
default: null
|
||||
},
|
||||
modelValue: {
|
||||
type: [String, Number, Boolean, Object],
|
||||
type: [String, Number, Boolean, Object] as PropType<string | number | boolean | object | null>,
|
||||
default: null
|
||||
},
|
||||
name: {
|
||||
|
||||
Reference in New Issue
Block a user