mirror of
https://github.com/yeicor-3d/yet-another-cad-viewer.git
synced 2025-12-19 22:24:17 +01:00
14 lines
417 B
Vue
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> |