24 lines
623 B
Vue
24 lines
623 B
Vue
<template>
|
|
<v-layout row wrap >
|
|
<v-flex xs12 sm6 class="left" fill-height pa-1>
|
|
<!-- komponen kiri -->
|
|
<patient-left-side></patient-left-side>
|
|
</v-flex>
|
|
|
|
<v-flex xs12 sm6 class="right" fill-height pa-1>
|
|
<!-- komponen kanan -->
|
|
<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>
|
|
|