20 lines
463 B
Vue
20 lines
463 B
Vue
<template>
|
|
<v-layout>
|
|
<v-flex xs6 mr-1>
|
|
<patient-left-side></patient-left-side>
|
|
</v-flex>
|
|
<v-flex xs6 ml-1>
|
|
<patient-right-side></patient-right-side>
|
|
</v-flex>
|
|
</v-layout>
|
|
</template>
|
|
|
|
<script>
|
|
module.exports = {
|
|
components : {
|
|
'patient-left-side' : httpVueLoader('./patientLeftSide.vue'),
|
|
'patient-right-side' : httpVueLoader('./patientRightSide.vue')
|
|
}
|
|
}
|
|
</script>
|