22 lines
559 B
Vue
22 lines
559 B
Vue
<template>
|
|
<v-card class="pa-1">
|
|
<v-layout row wrap>
|
|
<v-flex xs12>
|
|
<patient-search-box></patient-search-box>
|
|
</v-flex>
|
|
|
|
<v-flex xs12>
|
|
<patient-search-result></patient-search-result>
|
|
</v-flex>
|
|
</v-layout>
|
|
</v-card>
|
|
</template>
|
|
<script>
|
|
module.exports = {
|
|
components : {
|
|
'patient-search-box' : httpVueLoader('./patientSearchBox.vue'),
|
|
'patient-search-result' : httpVueLoader('./patientSearchResult.vue')
|
|
}
|
|
}
|
|
</script>
|