2020-10-28 11:55:20 +00:00
|
|
|
<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">
|
2021-01-30 10:23:18 +00:00
|
|
|
<img src="flaschengeist-logo.svg" />
|
2020-10-28 11:55:20 +00:00
|
|
|
</q-avatar>
|
|
|
|
</q-circular-progress>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-01-30 03:16:17 +00:00
|
|
|
import { defineComponent } from 'vue';
|
2020-10-28 11:55:20 +00:00
|
|
|
export default defineComponent({
|
2021-03-18 16:23:57 +00:00
|
|
|
name: 'DarkCircularProgress',
|
2020-10-28 11:55:20 +00:00
|
|
|
});
|
|
|
|
</script>
|