slowing adding gui

This commit is contained in:
Scott Bell 2024-08-08 15:35:30 +02:00
parent 55c8609953
commit a94c752616
2 changed files with 14 additions and 2 deletions

View File

@ -94,7 +94,7 @@ export default class CompsManager extends EventEmitter {
} }
getExpression() { getExpression() {
return 'a + b'; return 'a * b ';
} }
#addTelemetryObject = async (telemetryObject) => { #addTelemetryObject = async (telemetryObject) => {

View File

@ -21,7 +21,19 @@
--> -->
<template> <template>
<div class="u-contents">This is the comps view</div> <div class="c-cs" aria-label="Derived Telemetry">
<section class="c-cs__current-output c-section">
<div class="c-cs__content c-cs__current-output-value">
<span class="c-cs__current-output-value__label">Current Output</span>
<span class="c-cs__current-output-value__value" aria-label="Current Output Value">
<template v-if="currentCompOutput">
{{ currentCompOutput }}
</template>
<template v-else> --- </template>
</span>
</div>
</section>
</div>
</template> </template>
<script setup> <script setup>