From de7286c8d41992bde6591aa4dc3df68e11f3dafa Mon Sep 17 00:00:00 2001 From: Artemiy Solopov Date: Sun, 18 Jan 2026 01:46:16 +0200 Subject: [PATCH] (WIP) Auction show --- src/components/auctions/Index.vue | 5 ++++- src/components/auctions/Show.vue | 17 +++++++++++++++++ src/pages/auctions/auction.astro | 8 ++++++++ 3 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 src/components/auctions/Show.vue create mode 100644 src/pages/auctions/auction.astro diff --git a/src/components/auctions/Index.vue b/src/components/auctions/Index.vue index 6291293..78391f1 100644 --- a/src/components/auctions/Index.vue +++ b/src/components/auctions/Index.vue @@ -23,6 +23,9 @@ watch(user, async (userVal) => { diff --git a/src/components/auctions/Show.vue b/src/components/auctions/Show.vue new file mode 100644 index 0000000..4d4d586 --- /dev/null +++ b/src/components/auctions/Show.vue @@ -0,0 +1,17 @@ + + + + + \ No newline at end of file diff --git a/src/pages/auctions/auction.astro b/src/pages/auctions/auction.astro new file mode 100644 index 0000000..0da1cdc --- /dev/null +++ b/src/pages/auctions/auction.astro @@ -0,0 +1,8 @@ +--- +import Layout from "../../layouts/Layout.astro"; +import AuctionShow from "../../components/auctions/Show.vue" +--- + + + + \ No newline at end of file