2023-12-23 21:49:23 +00:00
|
|
|
<template>
|
|
|
|
<NcLoadingIcon class="loading" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { NcLoadingIcon } from '@nextcloud/vue'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Loading',
|
|
|
|
components: {
|
|
|
|
NcLoadingIcon,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
2024-04-29 22:48:47 +00:00
|
|
|
.loading {
|
|
|
|
margin: 2rem 0;
|
|
|
|
}
|
2023-12-23 21:49:23 +00:00
|
|
|
</style>
|