mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-03 09:20:10 +00:00
17 lines
318 B
Vue
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>
|