add base structure for card text as textref

This commit is contained in:
axolotle
2021-03-09 16:06:36 +01:00
parent a81079bf60
commit b195ea4b58
4 changed files with 116 additions and 5 deletions
+10 -2
View File
@@ -1,13 +1,21 @@
<template>
<component-debug :component="this">
<component-debug :component="this" class="view">
<div class="py-3">
<b-button @click="openText">
add text 50
</b-button>
</div>
<!-- BACKGROUND (mode) -->
<component :is="mode" />
<text-card v-for="group in groups" :key="group.id" :id="group.id" />
<!-- FOREGROUND (texts) -->
<section v-for="group in groups" :key="group.id" class="split-screen">
<text-card :id="group.id" />
<div>
<text-card v-for="id in group.prod" :key="id" :id="id" />
</div>
</section>
</component-debug>
</template>