29 lines
434 B
Vue
29 lines
434 B
Vue
<template>
|
|
<div class="text-center chungus-loader-container">
|
|
<p>
|
|
<b-spinner variant="success" type="grow" />
|
|
</p>
|
|
<p>
|
|
{{ text }}
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "BigChungusLoader",
|
|
props: {
|
|
text: {
|
|
type: String,
|
|
default: "onSpot is loading..."
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
div.chungus-loader-container {
|
|
margin-top: 25vh;
|
|
width: 100%;
|
|
}
|
|
</style> |