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