33 lines
956 B
Vue
33 lines
956 B
Vue
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
|
|
export default defineComponent({
|
|
name: "Error404NotFound",
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="fullscreen bg-blue-10 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="blue"
|
|
unelevated
|
|
to="/"
|
|
label="กลับไปหน้าหลัก"
|
|
no-caps
|
|
/>
|
|
|
|
<div class="q-mt-xl text-subtitle1">
|
|
<q-icon name="mdi-alert-circle-outline" size="20px" class="q-mr-sm" />
|
|
พบปัญหาการใช้งานกรุณาติดต่อผู้ดูแลระบบ
|
|
<span class="text-weight-bold q-ml-xs">088-264-9800</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|