Appearance
Progress Indicator
- 분석화면에서 로딩 상태를 표시하는 컴포넌트
Basic
Loading...
vue
<script setup lang="ts">
import { ProgressIndicator } from '@jennifersoft/vue-components-v2';
</script>
<template>
<progress-indicator />
<div class="absolute top-0 left-0 w-full h-full text-center text-sm">
Loading...
</div>
</template>