Dung Diego

up

......@@ -53,7 +53,7 @@
</div></div>
<div class="row mt-3">
<div class="col" v-for="(value, key) in order">
<span>{{ key }} {{ value }}</span>
<span>@{{ key }} @{{ value }}</span>
</div>
</div>
<div class="row mt-3">
......@@ -62,7 +62,7 @@
<thead>
<tr>
<th v-for="(value, key) in items[0]" :key="key">
{{ key }}
@{{ key }}
</th>
</tr>
</thead>
......@@ -70,7 +70,7 @@
<tbody>
<tr v-for="(item, index) in items" :key="index">
<td v-for="(value, key) in items[0]" :key="key">
{{ item[key] }}
@{{ item[key] }}
</td>
</tr>
</tbody>
......