31 lines
542 B
Vue
31 lines
542 B
Vue
<template>
|
|
<Subtitle value="Lookup" />
|
|
<div>
|
|
<div class="card mb-3 shadow">
|
|
<div class="card-header">Patients</div>
|
|
<div class="card-body">
|
|
<ViewPatientLookup :client="client" v-model:selection="selection" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Subtitle from './Subtitle.vue';
|
|
import ViewPatientLookup from './ViewPatientLookup.vue';
|
|
|
|
export default {
|
|
components: {
|
|
Subtitle, ViewPatientLookup
|
|
},
|
|
props: {
|
|
client: Object
|
|
},
|
|
data() {
|
|
return {
|
|
selection: null
|
|
};
|
|
}
|
|
};
|
|
</script>
|