feat: about component

This commit is contained in:
oat_dev 2024-04-23 13:51:32 +07:00
parent 2f1c46b9db
commit a147dc4b4c
6 changed files with 186 additions and 0 deletions

View file

@ -13,6 +13,9 @@ 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 AboutComponent from 'src/components/03_customer-management/AboutComponent.vue';
import ContactComponent from 'src/components/03_customer-management/ContactInformation.vue';
import OtherInformation from 'src/components/03_customer-management/OtherInformation.vue';
import FormBusiness from 'src/components/03_customer-management/FormBusiness.vue';
const statusToggle = ref<boolean>(false);
@ -217,6 +220,15 @@ function openDialogInputForm() {
<template #businessInformation>
<FormBusiness separator dense outlined />
</template>
<template #about>
<AboutComponent dense outlined separator />
</template>
<template #contactInformation>
<ContactComponent dense outlined separator />
</template>
<template #otherDocuments>
<OtherInformation dense outlined />
</template>
</TabComponent>
</div>
</template>