mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-06 12:37:55 -04:00
26 lines
525 B
Vue
26 lines
525 B
Vue
<template>
|
|
<section class="w-100">
|
|
<slot name="header"></slot>
|
|
<div v-if="isLoaded">
|
|
<slot></slot>
|
|
</div>
|
|
<p v-if="!isLoaded" class="text-center">
|
|
<Spinner :size="size" />
|
|
</p>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
value: { required: true },
|
|
size: { default: '5rem' },
|
|
},
|
|
computed: {
|
|
isLoaded() {
|
|
return this.value !== undefined && this.value !== null;
|
|
},
|
|
},
|
|
};
|
|
</script>
|