update komponen, data pasien, list pasien, screen

This commit is contained in:
bagus-arie05
2025-08-27 15:52:38 +07:00
parent 15c49262f1
commit 89b36b7d1f
7 changed files with 1618 additions and 1 deletions

View File

@@ -9,8 +9,13 @@
<v-checkbox
:model-value="isSelected(item.id)"
@change="toggleService(item.id)"
color="primary"
></v-checkbox>
</template>
<template v-slot:item.no="{ item }">
{{ item.no }}
</template>
</v-data-table>
</template>
@@ -34,4 +39,14 @@ const toggleService = (id) => {
emit('update:selectedItems', newSelection);
};
</script>
</script>
<style scoped>
.v-data-table {
border-radius: 8px;
}
.v-checkbox {
justify-content: center;
}
</style>