Files
yet-another-cad-viewer/frontend/misc/Loading.vue
2024-03-05 20:58:14 +01:00

14 lines
417 B
Vue

<script setup lang="ts">
import {VContainer, VRow, VCol, VProgressCircular} from "vuetify/lib/components/index.mjs";
</script>
<template>
<v-container>
<v-row justify="center" style="height: 100%">
<v-col align-self="center">
<v-progress-circular indeterminate style="display: block; margin: 0 auto;"></v-progress-circular>
<slot/>
</v-col>
</v-row>
</v-container>
</template>