Added collections loading
This commit is contained in:
29
src/components/BigChungusLoader.vue
Normal file
29
src/components/BigChungusLoader.vue
Normal file
@@ -0,0 +1,29 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user