style: code cleanup

This commit is contained in:
Twig 2025-07-19 17:15:44 +02:00
parent 3beaddf0bd
commit e44c7d0c2e
No known key found for this signature in database
3 changed files with 11 additions and 10 deletions

View file

@ -18,12 +18,10 @@ const props = defineProps<{
const modalPopupVisible = ref<boolean>(false);
function showModalPopup() {
console.log("hello there")
modalPopupVisible.value = true
}
function hideModalPopup() {
console.log("gone")
modalPopupVisible.value = false
}
</script>