fix: แก้ ชื่อ input

This commit is contained in:
Net 2024-06-18 13:59:12 +07:00
parent b945624404
commit b4ee83272b

View file

@ -2,7 +2,7 @@
import { CustomerBranch } from 'src/stores/customer/types';
import { onMounted, ref } from 'vue';
const ownerName = defineModel<string>('ownerName');
const personName = defineModel<string>('personName');
const customerName = defineModel<string>('customerName');
const customerNameEn = defineModel<string>('customerNameEn');
const taxNo = defineModel<string | null | undefined>('taxNo');
@ -56,7 +56,7 @@ onMounted(async () => {});
hide-bottom-space
class="col-6"
:label="$t('formDialogCustomerName')"
v-model="ownerName"
v-model="personName"
/>
<q-input
for="input-tax-no"
@ -115,7 +115,7 @@ onMounted(async () => {});
hide-bottom-space
class="col-6"
:label="$t('companyOwnerName')"
v-model="ownerName"
v-model="personName"
/>
</div>