ProgressRing.story.vue 339 B

123456789101112
  1. <template>
  2. <Story title="Progress Ring">
  3. <HoppSmartProgressRing class="mr-2 text-red-500" :radius="8" :stroke="1.5"
  4. :progress="(failedTests / totalTests) * 100" />
  5. </Story>
  6. </template>
  7. <script setup lang="ts">
  8. import { HoppSmartProgressRing } from "../components/smart"
  9. const totalTests = 10
  10. const failedTests = 2
  11. </script>