RouteLookup (refactored from RoutePatientLookup)
This commit is contained in:
30
htdocs/RouteLookup.vue
Normal file
30
htdocs/RouteLookup.vue
Normal 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>
|
Reference in New Issue
Block a user