From 5e525e43da49c748a463155d27ddad3cfd0e78d1 Mon Sep 17 00:00:00 2001 From: Net Date: Wed, 7 Aug 2024 18:33:18 +0700 Subject: [PATCH] refactor: add btn save --- .../employee/BasicInformation.vue | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/src/components/03_customer-management/employee/BasicInformation.vue b/src/components/03_customer-management/employee/BasicInformation.vue index 81ebdfd9..d19ce046 100644 --- a/src/components/03_customer-management/employee/BasicInformation.vue +++ b/src/components/03_customer-management/employee/BasicInformation.vue @@ -4,6 +4,8 @@ import { CustomerBranch } from 'src/stores/customer/types'; import { selectFilterOptionRefMod } from 'src/stores/utils'; import { onMounted, ref, watch } from 'vue'; +import SaveButton from 'src/components/button/SaveButton.vue'; + const optionsBranch = defineModel<{ id: string; name: string }[]>( 'optionsBranch', { default: [] }, @@ -69,7 +71,9 @@ onMounted(() => {