Skip to content
On this page

Multiline

何时使用

在有需要使用多行文本展示时,该展示框可以提供更强大功能

代码演示

结果

<template>
  <h-multiline :value="text" title="结果" />
</template>

<script setup lang="ts">
import { ref } from 'vue';

const text = ref('请输入多行文本');
</script>

API

Props

属性说明类型默认值
title标题stringresult
value结果展示string
height高度string
fileType导出文件类型FileType
enableOutputFile导出文件boolean

参数修改

result -> value

outputFile -> enableOutputFile

result-desc -> title