mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-08 21:46:59 -04:00
26 lines
502 B
Vue
26 lines
502 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;
|
|
},
|
|
},
|
|
};
|
|
</script>
|