This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/components/misc/ProgressBar.story.vue

16 lines
245 B
Vue
Raw Normal View History

2023-03-28 11:45:16 +00:00
<script setup lang="ts">
import {ref} from 'vue'
import ProgressBar from './ProgressBar.vue'
const value = ref(50)
</script>
<template>
2024-02-07 11:18:19 +00:00
<Story>
<Variant title="Default">
<ProgressBar :value="value" />
</Variant>
</Story>
2023-03-28 11:45:16 +00:00
</template>