Files
FE_CPONE/test/vuex/pasien01/components/patientRightSide.vue
2026-04-27 10:13:31 +07:00

27 lines
692 B
Vue

<template>
<v-card class="pa-1">
<v-layout row wrap>
<v-flex xs12>
<patient-detail></patient-detail>
</v-flex>
<v-flex xs12>
<patient-history></patient-history>
</v-flex>
<v-flex xs12>
<patient-notes></patient-notes>
</v-flex>
</v-layout>
</v-card>
</template>
<script>
module.exports = {
components: {
'patient-history': httpVueLoader('./patientHistory.vue'),
'patient-detail': httpVueLoader('./patientDetail.vue'),
'patient-notes': httpVueLoader('./patientNotes.vue')
}
}
</script>