Aurora Admin v1.2.0: 79 components x 5 ends, doc site, contracts batch 1, playground, regression, deploy ready
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<template>
|
||||
<div v-if="visible" class="aa-loading-overlay" :class="{ 'is-inline': inline, 'is-dark': dark }">
|
||||
<div class="aa-loading-spinner"></div>
|
||||
<div class="aa-loading-text" v-if="text">{{ text }}</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
defineProps({
|
||||
visible: { type: Boolean, default: false },
|
||||
text: { type: String, default: '' },
|
||||
inline: { type: Boolean, default: false },
|
||||
dark: { type: Boolean, default: false }
|
||||
});
|
||||
</script>
|
||||
|
||||
<style src="./LoadingOverlay.css"></style>
|
||||
Reference in New Issue
Block a user