ntopng/http_src/vue/spinner.vue
2023-05-11 15:30:20 +02:00

17 lines
318 B
Vue

<template>
<div v-if="show" class="spinner-border text-primary" :style="{'width': size, 'height': size}" role="status">
</div>
</template>
<script setup>
import { ref, onMounted, onBeforeMount } from "vue";
const props = defineProps({
size: String,
show: Boolean,
});
onMounted(async () => {
});
</script>