Skip to content

Commit

Permalink
fix(textarea): 修复 slot 嵌套使用 textarea 时的输入失焦问题 (#3084)
Browse files Browse the repository at this point in the history
  • Loading branch information
eiinu committed May 17, 2024
1 parent 0c84db1 commit 2a00413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packages/__VUE/textarea/textarea.taro.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
:show-count="false"
:maxlength="maxLength ? maxLength : -1"
:placeholder="placeholder || translate('placeholder')"
:auto-focus="autofocus"
:auto-focus="autofocus ? true : undefined"
@input="change"
@blur="blur"
@focus="focus"
Expand Down

0 comments on commit 2a00413

Please sign in to comment.