Skip to content
On this page

TerminalView

When To Use

When it is necessary to display terminal code, this component can provide a good terminal display effect

Examples

result
He3

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

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

API

Props

PropertyDescriptionTypedefault
valueResult displaystring