27 lines
634 B
Vue
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>
|