From b1c0355cc3267920a62746f788d8fbf4f9403a2d Mon Sep 17 00:00:00 2001 From: TzuWei Date: Sun, 15 Oct 2023 19:04:28 +0800 Subject: [PATCH] feat: add about page --- components/LatestTable.vue | 2 -- pages/about/index.vue | 34 ++++++++++++++++++++++++++++++++-- 2 files changed, 32 insertions(+), 4 deletions(-) diff --git a/components/LatestTable.vue b/components/LatestTable.vue index d335e24..da31c64 100644 --- a/components/LatestTable.vue +++ b/components/LatestTable.vue @@ -10,7 +10,6 @@ defineProps<{ const emit = defineEmits(["update-page"]); const headers: { name: string; column: string }[] = [ - { name: "ID", column: "id" }, { name: "", column: "trade_type" }, { name: "平台", column: "platform" }, { name: "遊戲", column: "name" }, @@ -59,7 +58,6 @@ function getConditionValue(condition: Price["condition"]) { - {{ item.id }} {{ getTradeTypeValue(item.trade_type) }} {{ item.Game?.platform }} {{ item.Game?.name }} diff --git a/pages/about/index.vue b/pages/about/index.vue index d35958f..4dc203d 100644 --- a/pages/about/index.vue +++ b/pages/about/index.vue @@ -1,4 +1,34 @@