check permission get data detail registry

This commit is contained in:
Warunee Tamkoo 2024-08-21 16:34:22 +07:00
parent b598f761c4
commit ec8ff08b40
2 changed files with 209 additions and 167 deletions

View file

@ -0,0 +1,16 @@
<script lang="ts" setup>
defineProps({
message: {
type: String,
default: "",
},
});
</script>
<template>
<q-card>
<q-card-section align="center">
<q-icon name="warning" color="red" size="sm" /> {{ message }}
</q-card-section>
</q-card>
</template>