15 lines
319 B
Vue
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> |