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
Property | Description | Type | default |
---|---|---|---|
value | Result display | string |