diff --git a/src/App.vue b/src/App.vue index 3e3f778..256441e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -16,7 +16,18 @@ :columns="['uid', 'description', 'box', 'image']" :items="loadedItems" :keyName="'uid'" - /> + v-slot="{ item }" + > + item +
+
{{ item.description }}
+
uid: {{ item.uid }} box: {{ item.box }}
+
+ diff --git a/src/components/Cards.vue b/src/components/Cards.vue index 73db069..5e53ec1 100644 --- a/src/components/Cards.vue +++ b/src/components/Cards.vue @@ -1,6 +1,6 @@