多行纯文本编辑控件,适用于评论或反馈表单中的一段意见。
基本使用
可以用于多行输入。
html
<iui-textarea
placeholder="Please enter the content of no less then 10 characters"
></iui-textarea>
<iui-textarea
placeholder="Please enter the content of no less then 10 characters"
></iui-textarea>
禁用状态
通过 disabled
属性来禁用多行文本输入框。
html
<iui-textarea disabled placeholder="Disabled"></iui-textarea>
<iui-textarea disabled placeholder="Disabled"></iui-textarea>
字数统计
通过 showLimit
属性来开启字数统计。
html
<iui-textarea
placeholder="Please enter the content of no less then 10 characters"
showLimit
></iui-textarea>
<iui-textarea
placeholder="Please enter the content of no less then 10 characters"
showLimit
></iui-textarea>
高度限制
设置高度限制,输入区域不会超过设置的高度。
html
<iui-textarea
placeholder="Please enter the content of no less then 10 characters"
showLimit
:height="50"
></iui-textarea>
<iui-textarea
placeholder="Please enter the content of no less then 10 characters"
showLimit
:height="50"
></iui-textarea>
API
<Textarea>
props<Textarea>
events