check permission get data detail registry
This commit is contained in:
parent
b598f761c4
commit
ec8ff08b40
2 changed files with 209 additions and 167 deletions
16
src/components/CardNotPermission.vue
Normal file
16
src/components/CardNotPermission.vue
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue