26 lines
569 B
Vue
26 lines
569 B
Vue
<script>
|
|
import { VCard } from 'vuetify/components'
|
|
|
|
definePageMeta({
|
|
title: 'Practitioner Basic',
|
|
icon: 'mdi-account-injury-outline',
|
|
drawerIndex: 4,
|
|
})
|
|
</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 Praktisi Baru</span>
|
|
</template>
|
|
|
|
<v-card-text class="bg-surface-light pt-4">
|
|
<FormPractitionerBasic />
|
|
</v-card-text>
|
|
</v-card>
|
|
</template>
|