fix: naming

This commit is contained in:
Methapon2001 2024-04-19 13:25:48 +07:00
parent 68c690aae1
commit 3e1ccb5d0f

View file

@ -18,7 +18,7 @@ import FormQr from 'src/components/01_branch-management/FormQr.vue';
import FormBranchContact from 'src/components/01_branch-management/FormBranchContact.vue'; import FormBranchContact from 'src/components/01_branch-management/FormBranchContact.vue';
import FormImage from 'src/components/01_branch-management/FormImage.vue'; import FormImage from 'src/components/01_branch-management/FormImage.vue';
import DrawerInfo from 'src/components/DrawerInfo.vue'; import DrawerInfo from 'src/components/DrawerInfo.vue';
import infoForm from 'src/components/02_personnel-management/infoForm.vue'; import InfoForm from 'src/components/02_personnel-management/infoForm.vue';
import { BranchWithChildren, BranchCreate } from 'stores/branch/types'; import { BranchWithChildren, BranchCreate } from 'stores/branch/types';
import { watch } from 'vue'; import { watch } from 'vue';
@ -941,7 +941,7 @@ watch(locale, () => {
:statusBranch="formData.status" :statusBranch="formData.status"
> >
<template #info> <template #info>
<infoForm <InfoForm
v-model:address="formData.address" v-model:address="formData.address"
v-model:addressEN="formData.addressEN" v-model:addressEN="formData.addressEN"
v-model:province-id="formData.provinceId" v-model:province-id="formData.provinceId"
@ -1018,7 +1018,7 @@ watch(locale, () => {
:readonly="formType === 'view'" :readonly="formType === 'view'"
/> />
</template> </template>
</infoForm> </InfoForm>
</template> </template>
</DrawerInfo> </DrawerInfo>
</template> </template>