fix: แก้เรียกใช้ TabComponent

This commit is contained in:
Net 2024-04-23 11:45:42 +07:00
parent 367d2518cf
commit abe3cea2cd

View file

@ -10,7 +10,9 @@ import ItemCard from 'src/components/ItemCard.vue';
import FormDialog from 'src/components/FormDialog.vue';
import ProfileUpload from 'src/components/ProfileUpload.vue';
import BasicInformation from 'src/components/03_customer-management/BasicInformation.vue';
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';
const statusToggle = ref<boolean>(false);
const profileSubmit = ref<boolean>(false);
@ -199,7 +201,17 @@ function openDialogInputForm() {
</template>
<template #address>
<FormCustomerBranch separator dense outlined />
<!-- <FormCustomerBranch separator dense outlined /> -->
<div class="col-3 app-text-muted"> {{ $t('test') }}</div>
<div class="col-12 full-width row">
<TabComponent>
<template #address>
<FormAddress dense outlined />
</template>
</TabComponent>
</div>
</template>
</FormDialog>
</template>