<import-sjs from="./Textarea.prop.sjs" name="p" />
  <import-sjs from="@anyui/alipay/utils/helper.sjs" name="anyui" />
  <view
    class="anyui-textarea-box  {{className || ''}}"
    style="{{anyui.processStyle(style)}}"
  >
    <textarea
      class="anyui-textarea-textarea"
      ref="_saveRef1"
      onCustomblur="textareaChange('onBlur')"
      onCustomfocus="textareaChange('onFocus')"
      onCustominput="getValueLength"
      anyuiProps="{{p.getProps('_6') || {}}}"
      disabled="{{taDisabled}}"
      focus="{{focus}}"
      maxlength="{{tamaxlength}}"
      name="{{taName}}"
      placeholder="{{taPlaceholder}}"
      value="{{val}}"
    />
    <view class="anyui-textarea-bottom" a:if="{{showCount&&maxlength}}">
      {{ curLen }}/{{ maxlength }}
    </view>
  </view>
