Files
tgCrewAdmin/src/pages/ErrorNotFound.vue
2025-06-29 18:55:59 +03:00

17 lines
323 B
Vue

<template>
<div class="fullscreen bg-blue text-white text-center q-pa-md flex flex-center">
<div>
<div style="font-size: 30vh">
404
</div>
<div class="text-h2" style="opacity:.4">
{{ $t('error404') }}
</div>
</div>
</div>
</template>
<script setup lang="ts">
</script>