From: Wouter Kettlitz Date: Tue, 21 Sep 2021 16:34:25 +0000 (+0200) Subject: types: allow binding any value to SelectElement (#4575) X-Git-Tag: v3.2.13~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6171aecdcd5f71163c384479b225b731a10a8184;p=thirdparty%2Fvuejs%2Fcore.git types: allow binding any value to SelectElement (#4575) --- diff --git a/packages/runtime-dom/types/jsx.d.ts b/packages/runtime-dom/types/jsx.d.ts index 87580d7f20..f365e45814 100644 --- a/packages/runtime-dom/types/jsx.d.ts +++ b/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 {