13 lines
264 B
Vue
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> |