From 2a204e34ec91fc29d09cc73e1a75cc0bb2bea737 Mon Sep 17 00:00:00 2001 From: w3bdesign <45217974+w3bdesign@users.noreply.github.com> Date: Mon, 30 Jun 2025 22:23:50 +0200 Subject: [PATCH 1/3] Fix build error --- components/common/CommonToast.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/common/CommonToast.vue b/components/common/CommonToast.vue index 12589bd1..73e37cd2 100644 --- a/components/common/CommonToast.vue +++ b/components/common/CommonToast.vue @@ -60,7 +60,7 @@ defineExpose({ show }); .toast-enter-from, .toast-leave-to { opacity: 0; - transform: translateX(30px); + transform: translateX(30px); } .toast-enter-to, From 4b07f16e372215ad9bf2611e80d8d07e0558452a Mon Sep 17 00:00:00 2001 From: w3bdesign <45217974+w3bdesign@users.noreply.github.com> Date: Mon, 30 Jun 2025 22:26:39 +0200 Subject: [PATCH 2/3] Fix Toast --- components/Products/ProductsSingleProduct.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Products/ProductsSingleProduct.vue b/components/Products/ProductsSingleProduct.vue index 6f26360c..62a4382b 100644 --- a/components/Products/ProductsSingleProduct.vue +++ b/components/Products/ProductsSingleProduct.vue @@ -62,7 +62,7 @@ - + From a288e11f46a0b8193ee0fc13b51ee8b8ec474de6 Mon Sep 17 00:00:00 2001 From: w3bdesign <45217974+w3bdesign@users.noreply.github.com> Date: Mon, 30 Jun 2025 22:35:36 +0200 Subject: [PATCH 3/3] Pass product as prop --- components/Products/ProductsSingleProduct.vue | 43 ++++++++----------- pages/product/[product].vue | 8 +++- 2 files changed, 24 insertions(+), 27 deletions(-) diff --git a/components/Products/ProductsSingleProduct.vue b/components/Products/ProductsSingleProduct.vue index 62a4382b..2419b06d 100644 --- a/components/Products/ProductsSingleProduct.vue +++ b/components/Products/ProductsSingleProduct.vue @@ -1,35 +1,32 @@