Files
simrsx-fe/app/components/content/encounter/entry.vue
T
2025-09-23 21:15:59 +07:00

16 lines
390 B
Vue

<script setup lang="ts">
const props = defineProps<{
id: number
formType: string
}>()
</script>
<template>
<div class="mb-5 border-b border-b-slate-300 pb-3 text-lg xl:text-xl">
<Icon name="i-lucide-user" class="me-2" />
<span class="font-semibold">{{ props.formType }}</span> Kunjungan
</div>
<AppEncounterEntryForm />
<AppSepSmallEntry v-if="props.id" />
</template>