Skip to content

Textarea 文本域

基础用法

html
<ivy-textarea placeholder="请输入"></ivy-textarea>

只读

html
<ivy-textarea placeholder="请输入" readonly></ivy-textarea>

禁用

html
<ivy-textarea placeholder="请输入" disabled></ivy-textarea>

显示字数统计

html
<ivy-textarea
  placeholder="请输入"
  maxlength="200"
  show-word-limit
></ivy-textarea>

Props

Prop描述类型可选值默认值
placeholder提示语string--
readonly只读boolean-false
disabled是否禁用boolean-false
show-word-limit字数统计boolean-false
maxlength最大长度number--
minlength最小长度number--
autocomplete自动填充string--
spellcheck原生 spellcheckstring-auto
wrap原生 wrapstringhard/softsoft
rows行数number--
cols列数number--