We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 869b26f commit ab84f20Copy full SHA for ab84f20
components/LatestTable.vue
@@ -10,6 +10,7 @@ defineProps<{
10
const emit = defineEmits(["update-page"]);
11
12
const headers: { name: string; column: string }[] = [
13
+ { name: "ID", column: "id" },
14
{ name: "", column: "trade_type" },
15
{ name: "平台", column: "platform" },
16
{ name: "遊戲", column: "name" },
@@ -58,6 +59,7 @@ function getConditionValue(condition: Price["condition"]) {
58
59
</thead>
60
<tbody>
61
<tr v-for="item in data" :key="item.id">
62
+ <td>{{ item.id }}</td>
63
<td>{{ getTradeTypeValue(item.trade_type) }}</td>
64
<td>{{ item.Game?.platform }}</td>
65
<td>{{ item.Game?.name }}</td>
0 commit comments