data dari api

This commit is contained in:
2025-06-04 08:54:26 +07:00
parent 49770ba9f0
commit 3b288fd861
13 changed files with 385 additions and 36 deletions

View File

@@ -12,7 +12,7 @@ const state = ref(false)
</script>
<template>
<v-card elevation="10" style="overflow: hidden;min-width: 300px;" @click="state = true">
<v-card elevation="10" style="overflow: hidden;min-width: 300px;" @click="state = true; emit('detail', props?.item)">
<template v-slot:prepend>
<v-avatar size="50">
<Icon icon="solar:user-circle-broken" height="32" />
@@ -30,5 +30,5 @@ 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>