feat: เรียกใช้ FormBusiness

This commit is contained in:
Net 2024-04-23 13:41:11 +07:00
parent 92fd1b8774
commit d0d498a0e0

View file

@ -13,6 +13,7 @@ import BasicInformation from 'src/components/03_customer-management/BasicInforma
import FormCustomerBranch from 'src/components/03_customer-management/FormCustomerBranch.vue';
import TabComponent from 'src/components/TabComponent.vue';
import FormAddress from 'src/components/02_personnel-management/FormAddress.vue';
import FormBusiness from 'src/components/03_customer-management/FormBusiness.vue';
const statusToggle = ref<boolean>(false);
const profileSubmit = ref<boolean>(false);
@ -205,10 +206,16 @@ function openDialogInputForm() {
<div class="col-3 app-text-muted"> {{ $t('test') }}</div>
<div class="col-12 full-width row">
<div
class="col-12 full-width row bordered-b bordered-l bordered-r rounded"
>
<TabComponent>
<template #address>
<FormAddress dense outlined />
<FormAddress separator dense outlined />
</template>
<template #businessInformation>
<FormBusiness separator dense outlined />
</template>
</TabComponent>
</div>