enable public report

This commit is contained in:
Julian Krauser 2025-07-16 12:24:48 +02:00
parent 766114bf53
commit 6aae09cd03
16 changed files with 567 additions and 7 deletions

View file

@ -0,0 +1,19 @@
<template>
<div class="flex flex-col gap-2">
<br />
<button primary @click="$emit('nextStep', 'select')">Barcode verwenden</button>
<button primary-outline @click="$emit('nextStep', 'input')">ohne Barcode fortfahren</button>
</div>
</template>
<script setup lang="ts">
import { defineComponent } from "vue";
</script>
<script lang="ts">
export default defineComponent({
emits: {
nextStep: (s: string) => true,
},
});
</script>