Mager updated

This commit is contained in:
Simon Pocrnjič
2025-09-27 17:45:55 +02:00
parent d17e34941b
commit 7227c888d4
74 changed files with 6339 additions and 342 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
<script setup>
import { ref, watch } from 'vue';
import Drawer from './Drawer.vue';
import DialogModal from './DialogModal.vue';
import InputLabel from './InputLabel.vue';
import SectionTitle from './SectionTitle.vue';
import TextInput from './TextInput.vue';
@@ -123,7 +123,7 @@ const submit = () => {
</script>
<template>
<Drawer
<DialogModal
:show="show"
@close="close"
>
@@ -189,5 +189,5 @@ const submit = () => {
</div>
</form>
</template>
</Drawer>
</DialogModal>
</template>