diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-12-04 15:26:36 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-12-04 15:26:36 +0530 |
commit | 331a8da55352c736f08339ae6ca0d9e0eb690058 (patch) | |
tree | eebd21abc445d1f05a681668d1d66bbaa6034e98 /src/components/items_table.vue | |
parent | d5fab4fefaa3e63c1cda945cf556a0ecfdfa0170 (diff) |
added table to show items of an invoice0.2.2
Diffstat (limited to 'src/components/items_table.vue')
-rw-r--r-- | src/components/items_table.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/items_table.vue b/src/components/items_table.vue index 187ee0f..e9f103e 100644 --- a/src/components/items_table.vue +++ b/src/components/items_table.vue @@ -92,7 +92,7 @@ onMounted(() => { </thead> <tbody> - <tr v-for="(item, index) in allItems"> + <tr v-for="(item, index) in allItems" :key="item['id']"> <td scope="row">{{ index + 1 }}</td> <td>{{ item.Name }}</td> <td>{{ item.Description }}</td> |