no message
This commit is contained in:
parent
bc0ffa7373
commit
93a4124c89
1 changed files with 2 additions and 2 deletions
|
|
@ -43,7 +43,7 @@ const formDataInformation = reactive<any>({
|
|||
email: "",
|
||||
});
|
||||
|
||||
const emailVerify = ref<string>("");
|
||||
const emailVerify = ref<string|null>(null);
|
||||
const visibleColumnsHistory = ref<string[]>([
|
||||
"citizenId",
|
||||
"prefix",
|
||||
|
|
@ -540,7 +540,7 @@ onMounted(async () => {
|
|||
>
|
||||
</q-input>
|
||||
</div>
|
||||
<div v-if="emailVerify == ''" class="self-center col-3">
|
||||
<div v-if="emailVerify == null" class="self-center col-3">
|
||||
<div v-if="editEmail == false">
|
||||
<q-btn
|
||||
dense
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue