mirror of
https://github.com/axllent/mailpit.git
synced 2025-01-26 03:52:09 +02:00
6a4e5fb03c
See #156
18 lines
347 B
Vue
18 lines
347 B
Vue
<script>
|
|
export default {
|
|
props: {
|
|
loading: Number,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="loader" v-if="loading > 0">
|
|
<div class="d-flex justify-content-center align-items-center h-100">
|
|
<div class="spinner-border text-secondary" role="status">
|
|
<span class="visually-hidden">Loading...</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|