fix(select): fix type of modelValue incompatible (#1719)

Co-authored-by: 贾希琦 <xiqi.jia@imart360.local>
This commit is contained in:
KeiSei 2021-04-06 11:41:44 +08:00 committed by GitHub
parent 7b7ec8d5c8
commit 5b4e6df405
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ export interface SelectContext {
multiple?: boolean
multipleLimit?: number
valueKey?: string
modelValue?: string | number | unknown[]
modelValue?: string | number | unknown | unknown[]
popperClass?: string
remote?: boolean
}