refactor: edit name model
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 7s

This commit is contained in:
Thanaphon Frappet 2025-04-24 14:25:03 +07:00
parent 1d38dbc6cf
commit 28395b4f80

View file

@ -32,11 +32,11 @@ const entryCount = defineModel<number>('entryCount');
const issuePlace = defineModel<string>('issuePlace');
const issueCountry = defineModel<string>('issueCountry');
const issueDate = defineModel<Date | null | string>('visaIssueDate');
const type = defineModel<string>('visaType');
const type = defineModel<string>('type');
const expireDate = defineModel<Date>('expireDate');
const remark = defineModel<string>('remark');
const workerType = defineModel<string>('workerType');
const number = defineModel<string>('visaNumber');
const number = defineModel<string>('number');
const calculatedVisaDate = computed(() => {
if (!issueDate.value) return undefined;