code scanner

This commit is contained in:
Julian Krauser 2025-03-24 16:18:23 +01:00
parent 2b3231e26c
commit 2a77a950f5
9 changed files with 312 additions and 91 deletions

View file

@ -9,6 +9,7 @@
<component
:is="component_ref"
:data="data"
:callback="callback"
@click.stop
class="p-4 bg-white rounded-lg max-h-[95%] overflow-y-auto"
/>
@ -23,7 +24,7 @@ import { useModalStore } from "@/stores/modal";
<script lang="ts">
export default {
computed: {
...mapState(useModalStore, ["show", "component_ref", "data"]),
...mapState(useModalStore, ["show", "component_ref", "data", "callback"]),
},
methods: {
...mapActions(useModalStore, ["closeModal"]),