repod/src/components/Atoms/Loading.vue

21 lines
264 B
Vue

<template>
<NcLoadingIcon class="loading" />
</template>
<script lang="ts">
import { NcLoadingIcon } from '@nextcloud/vue'
export default {
name: 'Loading',
components: {
NcLoadingIcon,
},
}
</script>
<style scoped>
.loading {
margin: 2rem 0;
}
</style>