Initial commit

This commit is contained in:
2025-08-04 16:33:07 +03:30
commit f798e8e35c
9595 changed files with 1208683 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
<script setup>
const interval = ref()
const progressValue = ref(0)
onMounted(() => {
interval.value = setInterval(() => {
if (progressValue.value === 100)
return progressValue.value = 0
progressValue.value += 10
}, 1000)
})
onBeforeUnmount(() => {
clearInterval(interval.value)
})
</script>
<template>
<div class="demo-space-x">
<VProgressCircular
:rotate="360"
:size="70"
:width="6"
:model-value="progressValue"
color="primary"
>
{{ progressValue }}
</VProgressCircular>
<VProgressCircular
:rotate="90"
:size="70"
:width="6"
:model-value="progressValue"
color="primary"
>
{{ progressValue }}
</VProgressCircular>
<VProgressCircular
:rotate="170"
:size="70"
:width="6"
:model-value="progressValue"
color="primary"
>
{{ progressValue }}
</VProgressCircular>
<VProgressCircular
:rotate="-90"
:size="70"
:width="6"
:model-value="progressValue"
color="primary"
>
{{ progressValue }}
</VProgressCircular>
</div>
</template>