mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
16 lines
317 B
Vue
16 lines
317 B
Vue
<script setup lang="ts">
|
|
const used = ref(84.2)
|
|
|
|
const total = 238.42
|
|
</script>
|
|
|
|
<template>
|
|
<UMeter :value="used" :max="total">
|
|
<template #indicator="{ percent }">
|
|
<div class="text-sm text-right">
|
|
{{ used }}GB used ({{ Math.round(percent) }}%)
|
|
</div>
|
|
</template>
|
|
</UMeter>
|
|
</template>
|