<template>
<div class="erro">
<a-empty :image="simpleImage" />
</div>
</template>
<script lang="ts" setup>
import { defineExpose } from "vue";
import { Empty } from "ant-design-vue";
defineExpose({
simpleImage: Empty.PRESENTED_IMAGE_SIMPLE,
});
</script>
<style scoped>
.erro {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
</style>