pse-podcast-synchronisation/pse-dashboard/src/components/LoadingConditional.vue

19 lines
267 B
Vue
Raw Normal View History

2024-06-19 00:14:49 +02:00
<script setup>
defineProps({
waitingFor: Boolean
});
</script>
<template>
<slot v-if="waitingFor" />
<div
v-else
class="text-center"
>
<div class="spinner-border text-center" />
</div>
</template>
<style scoped>
</style>