summaryrefslogtreecommitdiff
path: root/pse-dashboard/src/components/LoadingConditional.vue
blob: 2bf233c062bc6d6cdcd4cc68e08c7cd042a1c978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<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>