nuxt-start/components/PageLoading.vue
2025-12-23 19:51:09 +01:00

13 lines
264 B
Vue

<template>
<Teleport to="#teleports">
<div class="card-loading" style="position: fixed;">
<ProgressSpinner style="width: 48px; height: 48px;" stroke-width="6" />
</div>
</Teleport>
</template>
<script lang="ts" setup>
</script>
<style></style>