Files
2025-04-24 07:31:36 +07:00

23 lines
583 B
Vue

<script>
import { VCard } from 'vuetify/components'
definePageMeta({
title: 'Tambah Pasien',
icon: 'mdi-account-injury-outline',
drawerIndex: 2,
})
</script>
<template>
<v-card class="mx-auto" prepend-icon="mdi-account-injury-outline" subtitle="Isi dan lengkapi dengan data yang sesuai"
width="80%"
style="background-color: #f5f5f5">
<template v-slot:title>
<span class="font-weight-black">Formulir Pasien Baru</span>
</template>
<v-card-text style="background-color: white">
<FormPatientCreate />
</v-card-text>
</v-card>
</template>