Skip to content
This repository has been archived by the owner on Oct 27, 2021. It is now read-only.

Commit

Permalink
fix AtInput #85
Browse files Browse the repository at this point in the history
  • Loading branch information
lice authored and psaren committed Dec 7, 2020
1 parent fea0fe7 commit 57f9973
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/taro-ui-vue-demo/src/pages/form/input/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
name="value14"
title="验证码"
type="text"
:maxLength="4"
:maxlength="4"
clear
placeholder="验证码"
:value="state.value14"
Expand Down
2 changes: 1 addition & 1 deletion packages/taro-ui-vue/src/components/input/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
:placeholderClass="placeholderCls"
:placeholder="placeholder"
:cursorSpacing="cursorSpacing"
:maxLength="inputProps.maxLength"
:maxlength="inputProps.maxLength"
:autoFocus="autoFocus"
:focus="focus"
:value="value"
Expand Down

0 comments on commit 57f9973

Please sign in to comment.