Skip to content

Commit

Permalink
[#173] Add watcher for reference
Browse files Browse the repository at this point in the history
  • Loading branch information
delano committed Jun 30, 2024
1 parent 51925de commit b839e9d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions apps/ui/components/requests/FoodRequestForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,8 @@ const steps = {
props.updateAutocomplete(selectedBranch.latitude, selectedBranch.longitude);
}
});
},
on: (form$: any, el: any) => {
console.log("Step 0 on", form$, el);
Expand Down Expand Up @@ -311,6 +313,13 @@ const parsedBranches = computed(() => {
});
});
//
watch(() => props.autocomplete, (newValue, oldValue) => {
//console.log("2Place selected {}", props.autocomplete.value);
});
onMounted(() => {
// console.log("FoodRequestFormState has been mounted");
Expand Down

0 comments on commit b839e9d

Please sign in to comment.