1
0

feat(reminders): move reminder settings to a popup

This commit is contained in:
kolaente
2023-06-09 14:23:32 +02:00
parent e6c4c18974
commit ae177c73ea
5 changed files with 103 additions and 37 deletions

View File

@ -23,11 +23,14 @@ const props = defineProps({
},
})
const emit = defineEmits(['close'])
const open = ref(false)
const popup = ref<HTMLElement | null>(null)
function close() {
open.value = false
emit('close')
}
function toggle() {