Skip to content
On this page

TerminalView

何时使用

在有需要展示终端代码时,该组件可以提供良好的终端展示效果

代码演示

result
He3

<template>
  <h-terminal-view :value="screen" />
</template>

<script setup lang="ts">
import { ref } from 'vue';
const screen = ref('He3');
</script>

API

Props

属性说明类型默认值
value结果展示string

参数修改

result -> value