Dung Diego

up

......@@ -56,12 +56,12 @@
<span>@{{ key }} @{{ value }}</span>
</div>
</div>
<div class="row mt-3" v-if="tables.length">
<div class="row mt-3" v-if="table.length">
<div class="col">
<table>
<thead>
<tr>
<th v-for="(value, key) in tables[0]" :key="key">
<th v-for="(value, key) in table[0]" :key="key">
@{{ key }}
</th>
</tr>
......@@ -69,7 +69,7 @@
<tbody>
<tr v-for="(item, index) in items" :key="index">
<td v-for="(value, key) in tables[0]" :key="key">
<td v-for="(value, key) in table[0]" :key="key">
@{{ item[key] }}
</td>
</tr>
......