Skip to content

Commit 6171aec

Browse files
authored
types: allow binding any value to SelectElement (#4575)
1 parent 11a2098 commit 6171aec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/runtime-dom/types/jsx.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ export interface SelectHTMLAttributes extends HTMLAttributes {
624624
name?: string
625625
required?: Booleanish
626626
size?: Numberish
627-
value?: string | string[] | number
627+
value?: any // we support :value to be bound to anything w/ v-model
628628
}
629629

630630
export interface SourceHTMLAttributes extends HTMLAttributes {

0 commit comments

Comments
 (0)