hrms-checkin/src/views/ErrorNotFoundPage.vue

28 lines
634 B
Vue
Raw Normal View History

2023-11-14 17:47:43 +07:00
<script lang="ts">
2024-09-02 13:40:15 +07:00
import { defineComponent } from 'vue'
2023-11-14 17:47:43 +07:00
export default defineComponent({
2024-09-02 13:40:15 +07:00
name: 'Error404NotFound',
})
2023-11-14 17:47:43 +07:00
</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>