mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-02 21:26:42 +01:00
19 lines
461 B
Vue
19 lines
461 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
isVisible: Boolean,
|
|
type: {
|
|
type: String,
|
|
default: 'inline'
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div v-if="isVisible">
|
|
<div v-if="type == 'inline'" class="has-text-centered mt-6">
|
|
<span id="icnSpinner" class="is-size-4">
|
|
<FontAwesomeIcon :icon="['fas', 'spinner']" spin />
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</template> |