Dung Diego

up

...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
53 </div></div> 53 </div></div>
54 <div class="row mt-3"> 54 <div class="row mt-3">
55 <div class="col" v-for="(value, key) in order"> 55 <div class="col" v-for="(value, key) in order">
56 - <span>{{ key }} {{ value }}</span> 56 + <span>@{{ key }} @{{ value }}</span>
57 </div> 57 </div>
58 </div> 58 </div>
59 <div class="row mt-3"> 59 <div class="row mt-3">
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
62 <thead> 62 <thead>
63 <tr> 63 <tr>
64 <th v-for="(value, key) in items[0]" :key="key"> 64 <th v-for="(value, key) in items[0]" :key="key">
65 - {{ key }} 65 + @{{ key }}
66 </th> 66 </th>
67 </tr> 67 </tr>
68 </thead> 68 </thead>
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
70 <tbody> 70 <tbody>
71 <tr v-for="(item, index) in items" :key="index"> 71 <tr v-for="(item, index) in items" :key="index">
72 <td v-for="(value, key) in items[0]" :key="key"> 72 <td v-for="(value, key) in items[0]" :key="key">
73 - {{ item[key] }} 73 + @{{ item[key] }}
74 </td> 74 </td>
75 </tr> 75 </tr>
76 </tbody> 76 </tbody>
......