16 lines
390 B
Vue
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>
|