29 lines
457 B
Vue
29 lines
457 B
Vue
<template>
|
|
<div class="empty-content-container" :class="{autoFit : 'auto-fit'}">
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'EmptyContent',
|
|
props: {
|
|
autoFit: { type: Boolean, default: false }
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.empty-content-container {
|
|
height: calc(100vh - 88px - 110px);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
&.auto-fit {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
</style>
|