feat(forms): allow null as initial value (#2275)

Co-authored-by: Romain Hamel <rom.hml@gmail.com>
This commit is contained in:
Gerben Mulder
2024-10-01 19:55:03 +02:00
committed by GitHub
parent 4ae9654062
commit 474accbefb
10 changed files with 10 additions and 10 deletions

View File

@@ -174,7 +174,7 @@ export default defineComponent({
inheritAttrs: false,
props: {
modelValue: {
type: [String, Number, Object, Array, Boolean],
type: [String, Number, Object, Array, Boolean] as PropType<string | number | object | Array<any> | boolean | null>,
default: ''
},
query: {