27 lines
692 B
Vue
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> |