Kaynağa Gözat

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

Wouter Kettlitz 4 yıl önce
ebeveyn
işleme
6171aecdcd
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      packages/runtime-dom/types/jsx.d.ts

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

@@ -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 {