Skip to content

Commit

Permalink
fix(textarea): 修改禁用属性设置
Browse files Browse the repository at this point in the history
  • Loading branch information
eiinu committed Jun 20, 2024
1 parent 511b73a commit 72bf5b0
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 @@ -6,7 +6,7 @@
:class="['nut-textarea__textarea', env == 'ALIPAY' && 'nut-textarea__ali']"
:style="styles"
:rows="rows"
:disabled="disabled || readonly"
:disabled="(disabled || readonly) ? (disabled || readonly) : undefined"
:value="modelValue"
:show-count="false"
:maxlength="maxLength ? maxLength : -1"
Expand Down

0 comments on commit 72bf5b0

Please sign in to comment.