22 lines
543 B
Vue
22 lines
543 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%">
|
|
<template v-slot:title>
|
|
<span class="font-weight-black">Formulir Pasien Baru</span>
|
|
</template>
|
|
|
|
<v-card-text class="bg-surface-light pt-4">
|
|
<FormPatientCreate />
|
|
</v-card-text>
|
|
</v-card>
|
|
</template>
|