27 lines
383 B
Java
27 lines
383 B
Java
<template>
|
|
<div class="JNoData">
|
|
<a-icon class="icon" type="inbox"/>
|
|
<br/>
|
|
{{$t('noData')}}
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'JNoData'
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.JNoData {;
|
|
position: absolute;
|
|
left: 50%;
|
|
text-align: center;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.icon {
|
|
font-size: 34px;
|
|
}
|
|
</style> |