Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Loading.vue « components « src - github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb13a2ce46cd6a6c14156bf82ae1f0130fd6d4ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
	<NcAppContent class="loading" />
</template>
<script>

import {
	NcAppContent,
} from '@nextcloud/vue'

export default {
	name: 'Loading',

	components: {
		NcAppContent,
	},
}

</script>