Why is there only aria-autocomplete on button? why no autocomplete?
Version
3.2.12
Reproduction link
Steps to reproduce
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button
Make button component
<button
autofocus
aria-autocomplete=""
disabled="false"
form=""
formaction=""
formenctype=""
formmethod=""
formnovalidate
name=""
type=""
value=""
>
Vue Button attributes demo
</button>
What is expected?
Why is there no autocomplete attribute on vue? It's standard html, and other frameworks such as React supports it.
What is actually happening?
autocomplete
attribute is not present
Why is there no autocomplete attribute on vue? It's standard html [...]
From the MDN page you linked to:
This attribute on a
<button>
is nonstandard and Firefox-specific.
Also I'd like to verify: you have an issue with this attribute being missing from the types here?