RouteLookup (refactored from RoutePatientLookup)

This commit is contained in:
2023-05-08 17:58:34 -04:00
parent cc5ec1f69f
commit c15f7ed885
3 changed files with 3 additions and 3 deletions

30
htdocs/RouteLookup.vue Normal file
View File

@@ -0,0 +1,30 @@
<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>