Textarea 多行文本框

一般用于多行字符串。

代码演示

<template>
  <div>
    参考
    <a href="/v-formly-v3/element-plus/zh/components/string.html">
      String 文本框
    </a>
  </div>
</template>

<script setup lang="ts"></script>

<style scoped></style>
复制

API

我们只列出属性中不一致的或新添加的,一致的地方请参考 具体组件库 文档

meta 属性

成员说明类型默认值
:maxLength最大长度number-
:readOnly禁用状态boolean-

meta.ui 属性(antdv)

成员说明类型默认值
:autosize自适应内容高度,可设置为true | false或对象:{ minRows: 2, maxRows: 6 }boolean | objecttrue
@change内容变更事件function(value)-
@focus焦点事件function(e)-
@blur失焦事件function(e)-
@pressEnter按下回车事件function(e)-

meta.ui 属性(element)

成员说明类型默认值
:autosize自适应内容高度,可设置为true | false或对象:{ minRows: 2, maxRows: 6 }boolean | objecttrue
@change内容变更事件function(value)-
@input在 Input 值改变时触发function(value)-
@focus焦点事件function(e)-
@blur失焦事件function(e)-