Skip to content
On this page

SingleLine

何时使用

在有需要使用单行输展示时,该展示框可提供更强大的功能

代码演示

结果:

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

<script setup lang="ts">
import { ref } from 'vue';
const text = ref('请输入多行文本');
</script>

API

Props

属性说明类型默认值
title标题string
value结果展示string
size复制按钮大小stringmiddle
copyable是否显示复制按钮booleantrue

参数修改

result -> value

showCopyButton -> copyable

resultDesc -> title