fix
Found camelCase attribute: autoComplete="off". HTML is case-insensitive. Use auto-complete="off" instead. Vue will automatically interpret it as camelCase in JavaScript. If this is an SVG camelCase attribute, use the .camel modifier.
This commit is contained in:
parent
650ce7b855
commit
c7a67856f9
1 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@
|
|||
<input
|
||||
:class="inputClasses"
|
||||
:disabled="disabled"
|
||||
autoComplete="off"
|
||||
autocomplete="off"
|
||||
@focus="focus"
|
||||
@blur="blur"
|
||||
@keydown.stop="keyDown"
|
||||
|
@ -239,4 +239,4 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
|
Loading…
Add table
Reference in a new issue