add chat
Main daploy / deploy (push) Successful in 45s

This commit is contained in:
2024-11-20 01:59:52 +02:00
parent d2eb6f02fd
commit 99ff4beba3
18 changed files with 626 additions and 68 deletions
+2 -3
View File
@@ -48,10 +48,9 @@
<script setup lang="ts">
import { ref, computed } from 'vue'
import md5 from 'md5'
import type { ContactInfo } from '@/types/DBDocumentTypes'
const { contactInfo } = defineProps<{
contactInfo: { name?: string; phone?: string; email?: string }
}>()
const { contactInfo } = defineProps<{ contactInfo: ContactInfo }>()
const success = ref(false)
const error = ref<string | null>(null)