From 90c8b1732ae351426c269f54194fee553d421ded Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Wed, 13 Nov 2024 10:13:00 +0700 Subject: [PATCH] refactor: by value passport and visa --- .../03_customer-management/ExpirationDate.vue | 9 ++++- .../03_customer-management/TableEmpoloyee.vue | 35 +++++++++++++++---- src/pages/03_customer-management/MainPage.vue | 2 ++ 3 files changed, 39 insertions(+), 7 deletions(-) diff --git a/src/components/03_customer-management/ExpirationDate.vue b/src/components/03_customer-management/ExpirationDate.vue index 97e8d956..2a56b82e 100644 --- a/src/components/03_customer-management/ExpirationDate.vue +++ b/src/components/03_customer-management/ExpirationDate.vue @@ -3,11 +3,17 @@ import { calculateDaysUntilExpire } from 'stores/utils'; defineProps<{ expirationDate: Date; + showAllDay?: boolean; }>();