You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
484 B
17 lines
484 B
<view class="u-textarea">
|
|
<textarea type="text"
|
|
model:value="{{ content }}"
|
|
placeholder="{{ placeholder }}"
|
|
placeholder-class="z-ph"
|
|
bindinput="input"
|
|
cursor-spacing="14"
|
|
maxlength="{{ maxlength }}"
|
|
cursor-spacing="20"
|
|
disable-default-padding="{{true}}"
|
|
adjust-position="{{true}}">
|
|
</textarea>
|
|
|
|
<view wx:if="{{ showLength }}" class="input-length-hint">
|
|
<text>{{ content.length }}</text>/{{ maxlength }}
|
|
</view>
|
|
</view>
|