Описание изменений

This commit is contained in:
2025-03-20 12:06:03 +03:00
parent e0d60ff473
commit a98710c12c
17 changed files with 131 additions and 620 deletions

View File

@@ -36,6 +36,7 @@
<script setup>
import { ref, computed } from 'vue';
import axios from 'axios';
const props = defineProps({
onEmailAuth: {
@@ -49,6 +50,7 @@ const code = ref('');
const error = ref('');
const isLoading = ref(false);
const showVerification = ref(false);
const isConnecting = ref(false);
const isValidEmail = computed(() => {
return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email.value);