hrms-mgt/src/views/ErrorPermission.vue

26 lines
549 B
Vue
Raw Normal View History

2024-08-26 17:40:11 +07:00
<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>