WIP Подтянула id клиента для медкарты

This commit is contained in:
Daria Golova
2022-12-26 20:03:33 +03:00
parent 7fb49d733c
commit 93cea24131
4 changed files with 18 additions and 3 deletions

View File

@@ -51,6 +51,9 @@ export default {
MedicalPolicyDocuments,
BaseStepper,
},
props: {
selectedClientId: String,
},
data() {
return {
isBaseData: true,
@@ -93,6 +96,14 @@ export default {
},
finish() {},
},
watch: {
selectedClientId: {
immediate: true,
handler(newValue) {
console.log(newValue);
},
},
},
};
</script>