Added functionality to select article.
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user