feat: native email input validation on login modal

This commit is contained in:
liyasthomas
2021-10-16 00:00:33 +05:30
parent c1ec5dc60d
commit 3e3b88b8c2
2 changed files with 12 additions and 14 deletions

View File

@@ -34,6 +34,7 @@
]"
:disabled="disabled"
:tabindex="loading ? '-1' : '0'"
:type="type"
>
<span
v-if="!loading"
@@ -143,6 +144,10 @@ export default defineComponent({
type: Array,
default: () => [],
},
type: {
type: String,
default: "button",
},
},
})
</script>