Commit c7a67856f90be0670e6a0366cd0affb590b7ba34
Committed by
GitHub
1 parent
650ce7b8
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.
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/components/input-number/input-number.vue
| ... | ... | @@ -18,7 +18,7 @@ |
| 18 | 18 | <input |
| 19 | 19 | :class="inputClasses" |
| 20 | 20 | :disabled="disabled" |
| 21 | - autoComplete="off" | |
| 21 | + autocomplete="off" | |
| 22 | 22 | @focus="focus" |
| 23 | 23 | @blur="blur" |
| 24 | 24 | @keydown.stop="keyDown" |
| ... | ... | @@ -239,4 +239,4 @@ |
| 239 | 239 | } |
| 240 | 240 | } |
| 241 | 241 | } |
| 242 | -</script> | |
| 243 | 242 | \ No newline at end of file |
| 243 | +</script> | ... | ... |