Added functionality to select article.

This commit is contained in:
2026-01-20 04:53:39 +01:00
parent 098972d000
commit 5e929dbb1e
9 changed files with 368 additions and 17 deletions
+15 -3
View File
@@ -1,11 +1,23 @@
<script setup lang="ts">
import {useLabelEditorStore} from "~/store/labelEditorStore";
let store = useLabelEditorStore();
</script>
<template>
<v-card>
<v-card-title>Test Index</v-card-title>
</v-card>
<v-container
v-if="store.article != null"
>
<Article/>
</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>