wonderful-panda/vue-tsx-support

`onInput` event type of input elements is incorrect

libre-man opened this issue · 1 comments

When using the onInput event type on a input element the value of event.target.value is string | string[] | undefined, however it seems that the html specification says that the value attribute of an input element can only be string. This issues seems to be cause by https://github.com/wonderful-panda/vue-tsx-support/blob/master/types/dom.d.ts#L193 which I think should be value: string;.

3.2.0-beta.1 maybe solve this problem