Anyone know how to properly add/extend all native HTML element attributes with custom ones?
With the TypeScript documentation for merging interfaces, I thought that
For vue, the following works:
declare module 'vue-tsx-support/types/dom' { interface InputHTMLAttributes { autocorrect: string; autocapitalize } }