feat: menu agencies (#65)
* feat: agencies => add agencies menu --------- Co-authored-by: Methapon Metanipat <methapon@frappet.com>
This commit is contained in:
parent
f6479cc72d
commit
b87e15301f
12 changed files with 1305 additions and 18 deletions
|
|
@ -38,12 +38,16 @@ const workplace = defineModel<string>('workplace', { default: '' });
|
|||
const workplaceEN = defineModel<string>('workplaceEn', { default: '' });
|
||||
const address = defineModel('address', { default: '' });
|
||||
const addressEN = defineModel('addressEn', { default: '' });
|
||||
const street = defineModel('street', { default: '' });
|
||||
const streetEN = defineModel('streetEn', { default: '' });
|
||||
const moo = defineModel('moo', { default: '' });
|
||||
const mooEN = defineModel('mooEn', { default: '' });
|
||||
const soi = defineModel('soi', { default: '' });
|
||||
const soiEN = defineModel('soiEn', { default: '' });
|
||||
const street = defineModel<string | null | undefined>('street', {
|
||||
default: '',
|
||||
});
|
||||
const streetEN = defineModel<string | null | undefined>('streetEn', {
|
||||
default: '',
|
||||
});
|
||||
const moo = defineModel<string | null | undefined>('moo', { default: '' });
|
||||
const mooEN = defineModel<string | null | undefined>('mooEn', { default: '' });
|
||||
const soi = defineModel<string | null | undefined>('soi', { default: '' });
|
||||
const soiEN = defineModel<string | null | undefined>('soiEn', { default: '' });
|
||||
const provinceId = defineModel<string | null | undefined>('provinceId');
|
||||
const districtId = defineModel<string | null | undefined>('districtId');
|
||||
const subDistrictId = defineModel<string | null | undefined>('subDistrictId');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue