edit hak akses belum fix

This commit is contained in:
2025-06-04 08:05:02 +07:00
parent 6efdc71d28
commit 31cd36382a
4 changed files with 48 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
<script setup lang="ts">
import { Icon } from "@iconify/vue";
import { boolean } from "zod/v4";
import {Icon} from "@iconify/vue";
import {boolean} from "zod/v4";
const props = withDefaults(defineProps<{
item: Record<string, any>;
@@ -14,7 +14,7 @@ const state = ref(false)
<v-card elevation="10" style="overflow: hidden;min-width: 300px;" @click="state = true">
<template v-slot:prepend>
<v-avatar size="50">
<Icon icon="solar:user-circle-broken" height="32" />
<Icon icon="solar:user-circle-broken" height="32"/>
</v-avatar>
</template>
<template v-slot:title>
@@ -29,5 +29,11 @@ const state = ref(false)
</template> -->
</v-card>
<MasterDialogModal v-if="state" :stateValue="state" @stateValue="val => state = val" />
<MasterDialogModal v-if="state" :stateValue="state" @stateValue="val => state = val">
<template v-slot:text>
<!-- <p>coba ini</p> -->
<!-- <MasterFormTypeUser />-->
<MasterFormListMenu/>
</template>
</MasterDialogModal>
</template>