This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-10-09 15:13:00 -07:00
|
|
|
<template>
|
|
|
|
<section class="w-100">
|
2020-10-17 09:19:11 -07:00
|
|
|
<div v-if="isLoaded">
|
2020-10-09 15:13:00 -07:00
|
|
|
<slot/>
|
|
|
|
</div>
|
2020-10-17 09:19:11 -07:00
|
|
|
<p class="text-center" v-if="!isLoaded">
|
2020-10-09 15:13:00 -07:00
|
|
|
<Spinner :size="size"/>
|
|
|
|
</p>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
value: { required: true },
|
|
|
|
size: {'default': '5rem'},
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
isLoaded() {
|
|
|
|
return this.value !== undefined;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|