mirror of
https://github.com/axllent/mailpit.git
synced 2026-06-28 15:06:07 +00:00
17 lines
263 B
Vue
17 lines
263 B
Vue
<script>
|
|
export default {
|
|
props: {
|
|
loading: {
|
|
type: Number,
|
|
default: 0,
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div v-if="loading > 0" class="loader" role="status" aria-live="polite" aria-label="Loading">
|
|
<div class="loader-bar"></div>
|
|
</div>
|
|
</template>
|