fix: fix address form
This commit is contained in:
parent
eaa1cfdeec
commit
ecc80ca860
1 changed files with 6 additions and 2 deletions
|
|
@ -127,9 +127,13 @@ watch(districtId, fetchSubDistrict);
|
|||
class="col-12"
|
||||
v-model="address"
|
||||
:rules="
|
||||
false
|
||||
disabledRule
|
||||
? []
|
||||
: [(val: string) => !!val || $t('formDialogInputAddressValidate')]
|
||||
: [
|
||||
(val) =>
|
||||
(val && val.length > 0) ||
|
||||
$t('formDialogInputAddressValidate'),
|
||||
]
|
||||
"
|
||||
/>
|
||||
<q-select
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue