20 lines
453 B
Vue
20 lines
453 B
Vue
|
<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>
|