mirror of
https://github.com/yeicor-3d/yet-another-cad-viewer.git
synced 2025-12-19 14:14:13 +01:00
13 lines
380 B
Vue
13 lines
380 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-col>
|
|
</v-row>
|
|
</v-container>
|
|
</template> |