2021-05-29 23:58:28 +08:00

33 lines
642 B
Vue

<template>
<div class="common-spinner">
<Loading class="common-circular"></Loading>
</div>
</template>
<style lang="scss" scoped>
.common-spinner {
display: none;
position: fixed;
z-index: 9999;
bottom: 20px;
right: 20px;
margin: 0 auto;
width: 30px;
height: 30px;
.common-circular {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
}
}
</style>
<script>
export default {
name: 'Spinner',
}
</script>