17 lines
561 B
Vue
17 lines
561 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 Not Found)</div>
|
|
<!-- <q-btn class="q-mt-xl" color="white" text-color="blue" unelevated to="/" label="กลับไปหน้าหลัก" no-caps /> -->
|
|
</div>
|
|
</div>
|
|
</template>
|