add some debug styling and display notes data in content

This commit is contained in:
axolotle
2021-05-09 00:08:49 +02:00
parent b03fc048c8
commit 1ec83b318a
6 changed files with 105 additions and 18 deletions
+2 -1
View File
@@ -7,7 +7,7 @@
v-for="parent in parents" :key="parent.id"
:id="parent.id"
:text-data="parent"
@click.native="$emit('open', parent.id)"
@open="$emit('open', $event)"
/>
</b-card-group>
</div>
@@ -15,6 +15,7 @@
</template>
<script>
// FIXME let events bubble
import { mapGetters } from 'vuex'
import TextMiniCard from '@/components/text/TextMiniCard'