26 lines
431 B
Vue
26 lines
431 B
Vue
<script setup lang="ts">
|
|
import {useLabelEditorStore} from "~/store/labelEditorStore";
|
|
|
|
let store = useLabelEditorStore();
|
|
</script>
|
|
|
|
<template>
|
|
<v-container
|
|
v-if="store.article != null"
|
|
>
|
|
<Article/>
|
|
<Variant/>
|
|
</v-container>
|
|
|
|
<v-container v-else>
|
|
<v-card>
|
|
<v-card-title>
|
|
Kein Artikel ausgewählt
|
|
</v-card-title>
|
|
</v-card>
|
|
</v-container>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |