types: allow binding any value to SelectElement (#4575)

This commit is contained in:
Wouter Kettlitz 2021-09-21 18:34:25 +02:00 committed by GitHub
parent 11a2098a69
commit 6171aecdcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -624,7 +624,7 @@ export interface SelectHTMLAttributes extends HTMLAttributes {
name?: string
required?: Booleanish
size?: Numberish
value?: string | string[] | number
value?: any // we support :value to be bound to anything w/ v-model
}
export interface SourceHTMLAttributes extends HTMLAttributes {