This commit is contained in:
2022-09-22 07:10:08 -04:00
parent 2028b35226
commit 7f5ed98386
33 changed files with 2611 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
<template>
<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 ViewPatientLookup from './ViewPatientLookup.vue';
export default {
components: {
ViewPatientLookup
},
props: {
client: Object
},
data() {
return {
selection: null
};
},
watch: {
},
methods: {
}
};
</script>