hrms-checkin/src/views/ErrorNotFoundPage.vue
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 36b3eef7fd update format
2024-09-02 13:40:15 +07:00

27 lines
634 B
Vue

<script lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
name: 'Error404NotFound',
})
</script>
<template>
<div
class="fullscreen bg-secondary text-white text-center q-pa-md flex flex-center"
>
<div>
<div class="text-h1">ไมพบหนาทองการ</div>
<div class="text-h2">(404 Page Not Found)</div>
<q-btn
class="q-mt-xl"
color="white"
text-color="secondary"
unelevated
to="/"
label="กลับไปหน้าหลัก"
no-caps
/>
</div>
</div>
</template>