26 lines
547 B
Vue
26 lines
547 B
Vue
<script>
|
|
import { VCard } from 'vuetify/components'
|
|
|
|
definePageMeta({
|
|
title: 'Vue Form',
|
|
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="600"
|
|
>
|
|
<template v-slot:title>
|
|
<span class="font-weight-black">Formulir Pasien Baru</span>
|
|
</template>
|
|
|
|
<v-card-text class="bg-surface-light pt-4">
|
|
<FormPatient />
|
|
</v-card-text>
|
|
</v-card>
|
|
</template>
|