Skip to content

Commit

Permalink
types: relax OptionHTMLAttributes.value type requirement
Browse files Browse the repository at this point in the history
fix #4574
  • Loading branch information
yyx990803 committed Sep 16, 2021
1 parent 8370118 commit 93949ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/runtime-dom/types/jsx.d.ts
Expand Up @@ -584,7 +584,7 @@ export interface OptionHTMLAttributes extends HTMLAttributes {
disabled?: Booleanish
label?: string
selected?: Booleanish
value?: string | string[] | number
value?: any // we support :value to be bound to anything w/ v-model
}

export interface OutputHTMLAttributes extends HTMLAttributes {
Expand Down

0 comments on commit 93949ed

Please sign in to comment.