24 lines
456 B
Vue
24 lines
456 B
Vue
<template>
|
|
<q-circular-progress
|
|
indeterminate
|
|
show-value
|
|
font-size="10px"
|
|
class="q-ma-md"
|
|
size="80px"
|
|
:thickness="0.15"
|
|
color="primary"
|
|
track-color="grey-3"
|
|
>
|
|
<q-avatar size="60px">
|
|
<img src="flaschengeist-logo.svg" />
|
|
</q-avatar>
|
|
</q-circular-progress>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
export default defineComponent({
|
|
name: 'DarkCircularProgress',
|
|
});
|
|
</script>
|