Files
anahita-front/error.vue
T
mohadese namavar ec84dfd222 init git
2024-06-16 00:22:14 +04:30

15 lines
319 B
Vue

<template>
<main class="auth">
<section>
<h1 class="text-center w-full text-9xl font-medium text-gray-500">
{{ error.statusCode }}
</h1>
</section>
</main>
</template>
<script setup>
const error = useError();
</script>
<style lang="scss" scoped></style>