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 | 复制按钮大小 | string | middle |
copyable | 是否显示复制按钮 | boolean | true |
参数修改
result -> value
showCopyButton -> copyable
resultDesc -> title