modelValue should support boolean

This commit is contained in:
2023-05-08 20:08:23 +10:00
parent a25776fbbb
commit 9b5aab6e6e

View File

@@ -193,7 +193,7 @@ const props = defineProps({
required: false,
},
modelValue: {
type: [String, Number],
type: [String, Number, Boolean],
default: undefined,
required: false,
},