bug fixes
All checks were successful
Build and Publish / build-release (push) Successful in 4m19s

This commit is contained in:
2026-04-30 16:41:34 -05:00
parent 7d5e198156
commit 53bbdca525
16 changed files with 721 additions and 673 deletions

View File

@@ -47,6 +47,11 @@ const { data, pending, refresh } = useCustomer('/customers', {
})
})
// Ensure data is refreshed when page loads
onMounted(() => {
refresh()
})
const customers = computed(() => data.value?.data ?? [])
const meta = computed(() => data.value?.meta)