Files
bio_frontend/pages/[tabId]/test/culture-graph-tab.vue

33 lines
1.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<PageDescription>
<h1>배양 그래프 ()</h1>
<div class="box">
<h2>1. 그래프 구성 기능</h2>
<ul>
<li>여러 개의 배양 그래프를 탭으로 전환하여 있습니다.</li>
<li> 탭은 독립적인 그래프를 표시합니다.</li>
</ul>
</div>
<div class="box">
<h2>2. 출력되는 데이터 개수</h2>
<ul>
<li>
4 × 시리즈 30 × 1 간격(100시간, 6,001포인트) =
<span class="highlight"> 탭당 180,030</span>
</li>
<li>전체(4 합산): <span class="highlight">720,120</span></li>
<li>
화면 초기 렌더링 시간은 300ms ~ 400ms 정도 소요되며,
이동시에는 거의 딜레이 없이 화면이 출력되고 있습니다.
</li>
</ul>
</div>
</PageDescription>
<BatchTabs />
</div>
</template>
<script setup lang="ts">
import BatchTabs from "~/components/domain/cultureGraph/BatchTabs.vue";
</script>