feat: add email sending via Mail API

This commit is contained in:
2025-09-21 09:16:54 +02:00
parent 0141657e14
commit 6cd1f7d620
4 changed files with 49 additions and 22 deletions

View File

@@ -3,10 +3,14 @@ import "./style.css"
import VueTyper from 'vue3-typer'
import "vue3-typer/dist/vue-typer.css"
import App from "./App.vue";
import Toast from "vue-toastification";
import "vue-toastification/dist/index.css";
const app = createApp(App)
app.component('VueTyper', VueTyper)
app.use(Toast, {});
// Global error handler
app.config.errorHandler = (err, vm, info) => {
console.error("Global error:", err, info)