25 lines
549 B
Vue
25 lines
549 B
Vue
<script setup lang="ts"></script>
|
|
|
|
<template>
|
|
<div
|
|
class="bg-white text-center q-pa-md flex flex-center"
|
|
style="height: 90vh"
|
|
>
|
|
<div>
|
|
<div class="text-h3">
|
|
<q-icon name="mdi-alert-outline" color="red" /> ไม่พบข้อมูลที่ต้องการ
|
|
</div>
|
|
|
|
<q-btn
|
|
class="q-mt-xl"
|
|
color="primary"
|
|
text-color="white"
|
|
to="/"
|
|
label="กลับหน้าหลัก"
|
|
no-caps
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|