mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-19 06:21:46 +01:00
feat(forms): allow null as initial value (#2275)
Co-authored-by: Romain Hamel <rom.hml@gmail.com>
This commit is contained in:
@@ -134,7 +134,7 @@ export default defineComponent({
|
||||
inheritAttrs: false,
|
||||
props: {
|
||||
modelValue: {
|
||||
type: [String, Number, Object, Array],
|
||||
type: [String, Number, Object, Array] as PropType<string | number | object | Array<any> | null>,
|
||||
default: ''
|
||||
},
|
||||
query: {
|
||||
|
||||
Reference in New Issue
Block a user