From: bartenra <77667589+bartenra@users.noreply.github.com> Date: Thu, 25 Mar 2021 20:20:38 +0000 (+0100) Subject: fix(types/jsx): llow tabindex to be a string (#3476) X-Git-Tag: v3.0.8~24 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e4a5712a33d10d3087f1c3cff0ecdf5569a84d94;p=thirdparty%2Fvuejs%2Fcore.git fix(types/jsx): llow tabindex to be a string (#3476) --- diff --git a/packages/runtime-dom/types/jsx.d.ts b/packages/runtime-dom/types/jsx.d.ts index f070ffdc87..729f8f593f 100644 --- a/packages/runtime-dom/types/jsx.d.ts +++ b/packages/runtime-dom/types/jsx.d.ts @@ -265,7 +265,7 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers { lang?: string placeholder?: string spellcheck?: Booleanish - tabindex?: number + tabindex?: number | string title?: string translate?: 'yes' | 'no'