refactor: edit branch current of customer

This commit is contained in:
Net 2024-08-14 15:18:31 +07:00
parent c10636bb23
commit dcdaa17983

View file

@ -161,6 +161,10 @@ function openEmployerBranchForm(formType: 'create' | 'edit' | 'info') {
customerBranchFormState.value.dialogModal = true;
}
onMounted(async () => {
await fetchList();
});
watch([inputSearch, currentStatus], async () => {
await fetchList();
});