nuVistA/htdocs/RouteLookup.vue

31 lines
542 B
Vue
Raw Permalink Normal View History

2022-09-22 07:10:08 -04:00
<template>
2023-05-06 12:05:13 -04:00
<Subtitle value="Lookup" />
2022-09-22 07:10:08 -04:00
<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>
2023-05-06 12:05:13 -04:00
import Subtitle from './Subtitle.vue';
2022-09-22 07:10:08 -04:00
import ViewPatientLookup from './ViewPatientLookup.vue';
export default {
components: {
2023-05-06 12:05:13 -04:00
Subtitle, ViewPatientLookup
2022-09-22 07:10:08 -04:00
},
props: {
client: Object
},
data() {
return {
selection: null
};
}
};
</script>