Added e-mail alert settings, saveable but not integrated yet.

This commit is contained in:
2026-07-18 06:24:07 +02:00
parent 479b044798
commit 216e7f59ef
18 changed files with 231 additions and 75 deletions

View File

@@ -1,4 +1,6 @@
<script setup>
import { useId } from 'vue';
defineProps({
checked: {
type: Boolean,
@@ -16,7 +18,7 @@ defineProps({
defineEmits(['change']);
const uid = String(Math.random()).slice(2);
const uid = useId();
</script>
<template>