23 lines
284 B
Vue
23 lines
284 B
Vue
|
<template>
|
||
|
<NcEmptyContent class="empty">
|
||
|
<slot />
|
||
|
</NcEmptyContent>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { NcEmptyContent } from '@nextcloud/vue'
|
||
|
|
||
|
export default {
|
||
|
name: 'EmptyContent',
|
||
|
components: {
|
||
|
NcEmptyContent,
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.empty {
|
||
|
height: 100%;
|
||
|
}
|
||
|
</style>
|